/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    cursor: pointer;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FBBA00;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #000;
    color: #fff;
}

.btn-primary {
    background: #FBBA00;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.btn-primary:hover {
    background: #e5a800;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-banner {
    width: 100%;
    display: block;
    line-height: 0;
}

.hero-promo-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 100%;
}

/* Responsive para la imagen del hero */
@media (max-width: 768px) {
    .hero {
        margin-top: 60px;
    }
    
    .hero-banner {
        padding: 20px;
        background: #fff;
    }
    
    .hero-promo-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 70px;
    }
    
    .hero-banner {
        padding: 15px;
    }
}

/* Find Location Section */
.find-location {
    padding: 60px 0;
    background: #fff;
}

.location-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.location-title .highlight {
    color: #FFC000;
}

.location-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    width: 1109.73px;
    height: 320px;
    margin-left: auto;
    margin-right: auto;
}

.gym-image {
    width: 1109.73px;
    height: 320px;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
}

.plan-highlight {
    background: #1a1a50;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
}

.plan-highlight-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.plan-badge-small {
    background: #FFC000;
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.plan-name {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    margin: 0;
}

.plan-highlight-content {
    color: #fff;
}

.plan-highlight-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.plan-description {
    padding: 30px;
    background: #f8f8f8;
    border-radius: 15px;
}

.plan-description h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.plan-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.benefit-icon {
    font-size: 24px;
}

.plan-benefit p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.btn-plan-black {
    width: 100%;
    background: #FFC000;
    color: #1a1a1a;
    border: none;
    padding: 18px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-bottom: 15px;
}

.btn-plan-black:hover {
    background: #e5a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 192, 0, 0.4);
}

.plan-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .location-title {
        font-size: 28px;
    }
    
    .location-image {
        width: 100%;
        height: auto;
        max-height: 250px;
    }
    
    .gym-image {
        width: 100%;
        height: auto;
        max-height: 250px;
    }
    
    .search-box-overlay {
        min-width: 280px;
        width: 90%;
        padding: 8px 15px;
    }
    
    .search-input {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .search-btn {
        font-size: 20px;
    }
    
    .plan-highlight {
        padding: 20px;
    }
    
    .plan-name {
        font-size: 24px;
    }
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: #f8f8f8;
}

.plans-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card-new {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.plan-featured-new {
    background: #3d3d5c;
    color: #fff;
}

.plan-badge-top {
    background: #FFC000;
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.plan-title-new {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.plan-featured-new .plan-title-new {
    color: #fff;
}

.plan-description-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.plan-featured-new .plan-description-text {
    color: #ccc;
}

.plan-pricing {
    margin-bottom: 20px;
}

.desde {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    margin: 0 0 5px 0;
}

.plan-featured-new .desde {
    color: #aaa;
}

.price-main {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0;
    line-height: 1;
}

.plan-featured-new .price-main {
    color: #fff;
}

.price-details {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0 0;
}

.plan-featured-new .price-details {
    color: #ccc;
}

.fidelity {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.plan-featured-new .fidelity {
    color: #ccc;
}

.btn-contract {
    width: 100%;
    background: #FFC000;
    color: #1a1a1a;
    border: none;
    padding: 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-contract:hover {
    background: #e5a800;
    transform: translateY(-2px);
}

.btn-contract-white {
    width: 100%;
    background: #FFC000;
    color: #1a1a1a;
    border: none;
    padding: 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-contract-white:hover {
    background: #e5a800;
    transform: translateY(-2px);
}

.btn-show-benefits {
    width: 100%;
    background: transparent;
    color: #0066cc;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.plan-featured-new .btn-show-benefits {
    color: #fff;
}

.btn-show-benefits:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .plans-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 20px 0;
    background: #f8f8f8;
}

.disclaimer-text {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: #fff;
}

.experience-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    line-height: 1.4;
}

.experience-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.experience-grid::-webkit-scrollbar {
    height: 8px;
}

.experience-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.experience-grid::-webkit-scrollbar-thumb {
    background: #FFC000;
    border-radius: 10px;
}

.experience-grid::-webkit-scrollbar-thumb:hover {
    background: #e5a800;
}

.experience-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 320px;
    flex-shrink: 0;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.experience-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.experience-label {
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.btn-inscribe-center {
    display: block;
    margin: 50px auto 0;
    background: #FFC000;
    color: #1a1a1a;
    border: none;
    padding: 18px 50px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-inscribe-center:hover {
    background: #e5a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 192, 0, 0.4);
}

/* Classes Section */
.classes-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.classes-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.classes-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.classes-grid::-webkit-scrollbar {
    height: 8px;
}

.classes-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.classes-grid::-webkit-scrollbar-thumb {
    background: #FFC000;
    border-radius: 10px;
}

.classes-grid::-webkit-scrollbar-thumb:hover {
    background: #e5a800;
}

.class-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.class-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.class-image-placeholder {
    width: 100%;
    height: 200px;
}

.class-badge {
    background: #FFC000;
    color: #1a1a1a;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    font-size: 14px;
}

.class-info {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: #f8f8f8;
}

.class-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 24px;
}

.detail-label {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.class-description {
    padding: 0 20px 20px 20px;
}

.class-description p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Old Plans Section - Keep for compatibility */
.plans {
    padding: 100px 0;
    background: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.plan-featured {
    border: 3px solid #FFC000;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFC000;
    color: #1a1a1a;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.plan-header h3 {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 700;
    color: #666;
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 5px;
}

.plan-price .period {
    font-size: 18px;
    color: #666;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 15px;
}

.btn-plan {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: #FFC000;
    color: #1a1a1a;
}

.plan-featured .btn-plan {
    background: linear-gradient(135deg, #FFC000 0%, #FF8C00 100%);
    color: #1a1a1a;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 15px;
}

/* App Section */
.app-section {
    padding: 80px 0;
    background: #FFF4D9;
    color: #1a1a1a;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.app-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

.app-scan-text {
    font-weight: 600;
    margin-top: 30px;
}

.app-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

.qr-code {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qr-image {
    width: 120px;
    height: 120px;
    display: block;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background: #1a1a1a;
    border-radius: 5px;
}

.app-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-store-btn {
    display: block;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.app-phones-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .app-content {
        grid-template-columns: 1fr;
    }
    
    .app-text h2 {
        font-size: 24px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Find Gym Section */
.find-gym-section {
    padding: 80px 0;
    background: #fff;
}

.find-gym-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.find-gym-hero {
    position: relative;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    width: 1109.73px;
    height: 320px;
    margin-left: auto;
    margin-right: auto;
}

.gym-hero-image {
    width: 1109.73px;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.search-box-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    min-width: 400px;
}

.search-input {
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px 15px;
    flex: 1;
    background: transparent;
}

.search-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
}

.plan-black-banner {
    background: #2a2a4a;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    color: #fff;
}

.plan-black-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plan-badge-yellow {
    background: #FFC000;
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.plan-black-title {
    font-size: 32px;
    font-weight: 900;
    margin: 0;
    color: #fff;
}

.plan-black-description {
    flex: 1;
    margin: 0;
    font-size: 16px;
}

.btn-black-enroll {
    background: #FFC000;
    color: #1a1a1a;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-black-enroll:hover {
    background: #e5a800;
    transform: translateY(-2px);
}

.plan-benefits-list h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
}

.benefit-emoji {
    font-size: 32px;
}

.benefit-item p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

@media (max-width: 768px) {
    .find-gym-hero {
        max-height: 250px;
        width: 100%;
        height: auto;
    }
    
    .gym-hero-image {
        height: auto;
        max-height: 250px;
        width: 100%;
    }
    
    .search-box-overlay {
        min-width: 280px;
        width: 90%;
    }
    
    .plan-black-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFC000 0%, #FF8C00 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 18px 50px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFC000;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFC000;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-login {
        display: none;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-featured {
        transform: scale(1);
    }

    .app-content {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .btn-hero {
        padding: 15px 40px;
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-icon-large {
        font-size: 48px;
    }
}
