

.fitclass-huge-title {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 600;
    color: #222;
    margin-bottom: 40px;
}

/* Container and Layout */
.fitclass-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
    background-color: #f5f5f5; /* Subtle background color */
}

.fitclass-col {
    flex-basis: 30%;
    text-align: center;
    padding: 25px;
    background-color: white; /* White card background */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
    margin: 15px;
}

/* Adjust column width for smaller screens */
@media (max-width: 768px) {
    .fitclass-col {
        flex-basis: 100%; /* Take full width on smaller screens */
        margin-bottom: 20px;
    }

    .fitclass-huge-title {
        font-size: 2rem; /* Reduce title size for mobile */
    }
}

.fitclass-col i {
    color: #007BFF;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* Step Titles */
.fitclass-step-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

/* Description */
.fitclass-description {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
}

/* CTA Button */
.fitclass-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #007BFF, #00D1FF); /* Gradient background */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2); /* Subtle shadow */
}

.fitclass-button:hover {
    background: linear-gradient(45deg, #0056b3, #00a3ff);
    transform: scale(1.05); /* Slight hover effect */
}

/* CTA Button responsiveness */
@media (max-width: 768px) {
    .fitclass-button {
        width: 100%; /* Full width button on mobile */
        text-align: center;
    }
}
