:root {
    --snow: #FFFFFF;
    --ice: #EDF7FA;
    --glacier: #D6EEF7;
    --lake: #6CA8C9;
    --deep: #17364A;
    --basalt: #4D5B63;

    --bg-main: #F0F4F8; /* Cool glacial grey */
    --bg-secondary: var(--ice);
    --bg-card: transparent;
    --bg-card-hover: var(--ice);
    --text-primary: var(--deep);
    --text-secondary: var(--basalt);
    --accent-blue: var(--lake);
    --accent-dark: var(--deep);
    --border-color: var(--glacier);

    /* Previously undefined — now defined */
    --blur-intensity: blur(12px);
    --accent-gradient: linear-gradient(135deg, var(--lake), var(--deep));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

/* -- Typography -- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--deep);
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }

.gradient-text {
    color: var(--lake);
}

.text-center {
    text-align: center;
}

/* -- Navbar -- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(237, 247, 250, 0.45); /* --ice tint */
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7); /* Frosty edge */
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: 2px;
    color: var(--accent-dark);
    text-decoration: none;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-toggle {
    display: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.65;
}

/* -- Buttons -- */
.btn-primary,
.btn-secondary,
.btn-primary-outline {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.02em;
    border: none;
}

.btn-primary {
    background: var(--deep);
    color: #fff;
    border: 1.5px solid transparent;
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--deep);
    color: #fff;
}

.btn-primary-outline {
    border: 1.5px solid var(--text-primary);
    color: var(--text-primary);
    padding: 0.5rem 1.2rem;
    background: transparent;
}

.btn-primary-outline:hover {
    background: var(--deep);
    color: #fff;
}

/* -- Hero Section -- */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.88)),
        url("osorno-corporate.png");
    background-size: cover;
    background-position: center;
    height: 100vh;
    padding: 0 5%;
}

.hero-content {
    max-width: 820px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--deep);
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--basalt);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons a {
    min-width: 220px;
    text-align: center;
}

/* -- Topographic Lines -- */
.topo-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* -- Section Dividers -- */
.volcano-divider {
    width: 100%;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* -- Section Title -- */
.section-title {
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* -- Features Section (MercadoPro page) -- */
.features {
    padding: 4.5rem 5%;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(237, 247, 250, 0.45);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    background: rgba(237, 247, 250, 0.65);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.icon-accent {
    stroke: var(--lake);
    transition: stroke 0.3s ease;
}

.feature-card:hover .icon-accent {
    stroke: var(--deep);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* -- Pricing Section -- */
.pricing {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.monthly-label,
.annual-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.badge-discount {
    background: rgba(108, 168, 201, 0.15);
    color: var(--lake);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-left: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--glacier);
    border: 1px solid var(--border-color);
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--deep);
    transition: .3s;
}

input:checked + .slider {
    background-color: var(--ice);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(237, 247, 250, 0.45);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    background: rgba(237, 247, 250, 0.65);
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.tier-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    min-height: 40px;
    line-height: 1.5;
}

.price {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--basalt);
}

.amount {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    color: var(--deep);
}

.period {
    color: var(--basalt);
    font-size: 0.9rem;
    margin-left: 0.3rem;
}

.billed-annually {
    color: var(--lake);
    font-size: 0.82rem;
    margin-bottom: 2rem;
    min-height: 20px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.features-list li {
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
}

.btn-tier {
    text-align: center;
    width: 100%;
}

/* -- Contact Section -- */
.contact-section {
    padding: 4.5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-text {
    text-align: left;
}

.contact-text h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-form-container {
    background: var(--ice);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.4rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--glacier);
    background: var(--snow);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--basalt);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--lake);
}

.form-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--glacier);
    background: var(--snow);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    cursor: pointer;
    outline: none;
    appearance: auto;
}

.form-select:focus {
    border-color: var(--lake);
}

.form-select option {
    background: var(--snow);
    color: var(--text-primary);
}

.btn-submit {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 1rem;
}

/* -- Footer -- */
footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 5%;
    margin-top: 2rem;
    background: transparent;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* -- About (Quiénes Somos) Section -- */
.about-section {
    padding: 4.5rem 5%;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.about-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    height: 100%;
}

.mv-card {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: flex-start;
}

.mv-block {
    position: relative;
}

.mv-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.accent-line {
    width: 4px;
    height: 22px;
    background: var(--lake);
    display: inline-block;
    border-radius: 2px;
    flex-shrink: 0;
}

.mv-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.values-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.values-header-title {
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-card {
    background: rgba(237, 247, 250, 0.45);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    padding: 1.2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}

.value-card:hover {
    transform: translateX(5px);
    box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.08);
    background: rgba(237, 247, 250, 0.65);
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
}

.value-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--deep);
    letter-spacing: -0.3px;
    grid-column: 2;
    grid-row: 1;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    grid-column: 1 / -1;
    grid-row: 2;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
}

.value-card:hover p {
    max-height: 150px;
    opacity: 1;
    margin-top: 1rem;
}

/* -- Corporate Services Section -- */
.corporate-services {
    padding: 4.5rem 5%;
    position: relative;
}

.corporate-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.corp-service-card {
    background: rgba(237, 247, 250, 0.45);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    padding: 2.5rem 2rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s ease;
    display: flex;
    flex-direction: column;
}

.corp-service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    background: rgba(237, 247, 250, 0.65);
}

.corp-service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.corp-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--deep);
    letter-spacing: -0.5px;
}

.corp-service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* -- Stats Section -- */
.stats-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.stat-card {
    background: rgba(237, 247, 250, 0.45);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 2rem 1.5rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    background: rgba(237, 247, 250, 0.65);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    color: var(--deep);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

.stat-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* -- Animations -- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* -- Responsive -- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 1rem 5%;
        flex-wrap: wrap;
    }
    
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        gap: 1.5rem;
        background: rgba(237, 247, 250, 0.95);
        backdrop-filter: blur(16px);
        margin-top: 1rem;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        width: 100%;
        padding: 0 1rem;
    }

    /* Hero */
    .hero {
        padding: 0 5%;
        height: auto;
        min-height: 100vh;
        padding-top: 80px; /* Space for navbar */
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons a {
        width: 100%;
    }

    /* Typography */
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }

    /* Layout Grids */
    .features-grid,
    .corporate-services-grid,
    .pricing-grid,
    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cards */
    .feature-card,
    .corp-service-card,
    .pricing-card,
    .stat-card,
    .value-card {
        padding: 1.5rem;
    }

    /* Force value cards to be fully expanded on mobile */
    .value-card p {
        max-height: 500px;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .value-card {
        cursor: default;
    }
    
    .value-card:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        background: rgba(237, 247, 250, 0.45);
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    /* Highlight Section (MercadoPro) */
    .highlight-container {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center !important;
    }

    .highlight-text {
        text-align: center !important;
    }

    .highlight-buttons {
        justify-content: center !important;
        flex-direction: column;
        width: 100%;
    }

    .highlight-buttons a {
        width: 100%;
    }

    /* Contact Form */
    .contact-form-container {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        align-items: center !important;
        text-align: center !important;
        gap: 2rem;
    }
    
    .footer-content > div {
        align-items: center !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }

    .contact-section,
    .features,
    .corporate-services,
    .pricing,
    .about-section,
    .stats-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}
