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

:root {
    --primary-green: #1b5e20;
    --dark-green: #0d3d11;
    --light-green: #2e7d32;
    --accent-green: #43a047;
    --accent-light: #66bb6a;
    --white: #ffffff;
    --light-bg: #f5f9f5;
    --card-bg: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --border-color: #e1ede1;
    --success: #00c853;
    --gradient-start: #1b5e20;
    --gradient-end: #2e7d32;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: -0.5px;
}

.cta-button {
    background: var(--white);
    color: var(--primary-green);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-green);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.3);
    background: var(--primary-green);
    color: var(--white);
}

.hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 100px 0 120px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hero-form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(27, 94, 32, 0.1);
}

.hero-form-card h3 {
    color: var(--primary-green);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: var(--light-bg);
    min-height: 48px;
    width: 100%;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
    background-color: var(--white);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(27, 94, 32, 0.4);
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-gray);
    margin-top: -8px;
}

.angebote {
    padding: 100px 0;
    background-color: var(--white);
}

.angebote h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.bank-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bank-item {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 32px;
    display: grid;
    grid-template-columns: 200px 140px 1fr 80px 160px;
    gap: 28px;
    align-items: center;
    box-shadow: 0 4px 16px rgba(27, 94, 32, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bank-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(27, 94, 32, 0.15);
    border-color: rgba(67, 160, 71, 0.3);
}

.bank-logo {
    display: flex;
    align-items: center;
}

.bank-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.rate {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.rate-label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 4px;
}

.bank-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bank-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.flag {
    font-size: 20px;
}

.bank-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.bank-features li {
    font-size: 12px;
    color: var(--text-gray);
}

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

.rating-score {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.rating-label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.btn-bank {
    background: var(--white);
    color: var(--primary-green);
    padding: 14px 24px;
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-bank:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.3);
    background: var(--primary-green);
    color: var(--white);
}

.rechner {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.rechner-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 56px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(27, 94, 32, 0.1);
}

.rechner-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.25);
}

.rechner-card h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.rechner-card p {
    color: var(--text-gray);
    margin-bottom: 32px;
}

.calculator-form {
    max-width: 800px;
    margin: 0 auto;
}

.calc-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.btn-calculate {
    background: var(--white);
    color: var(--primary-green);
    padding: 16px 48px;
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.2);
}

.btn-calculate:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(27, 94, 32, 0.3);
    background: var(--primary-green);
    color: var(--white);
}

.info-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.info-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(27, 94, 32, 0.08);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27, 94, 32, 0.12);
}

.info-card.blue {
    border-left: 5px solid var(--primary-green);
}

.info-card.purple {
    border-left: 5px solid var(--light-green);
}

.info-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card.blue .info-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(27, 94, 32, 0.25);
}

.info-card.purple .info-icon {
    background: var(--white);
    color: var(--primary-green);
    border: 3px solid var(--primary-green);
    box-shadow: 0 4px 16px rgba(27, 94, 32, 0.15);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.info-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.cta-section {
    padding: 100px 0;
    background-color: var(--white);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    padding: 70px 100px;
    border-radius: 28px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 12px 48px rgba(27, 94, 32, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cta-card h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.btn-cta-white {
    display: inline-block;
    background: var(--white);
    color: var(--primary-green);
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--white);
}

.btn-cta-white:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.5);
    background: transparent;
    color: var(--white);
}

.contact-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 50px auto 0;
    background-color: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(27, 94, 32, 0.1);
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    padding: 40px 0;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    font-size: 14px;
    opacity: 0.9;
}

.footer-right {
    display: flex;
    gap: 24px;
}

.footer-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-right a:hover {
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 48px;
    border-radius: 24px;
    width: 90%;
    max-width: 550px;
    position: relative;
    animation: slideDown 0.3s;
    box-shadow: 0 20px 60px rgba(27, 94, 32, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: var(--text-gray);
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h3 {
    color: var(--primary-green);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.success-modal h3 {
    color: var(--primary-green);
    margin-bottom: 16px;
}

.success-modal p {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .bank-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .bank-features {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .calc-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 16px 0;
    }

    .header .container {
        flex-direction: column;
        gap: 16px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 12px;
    }

    .hero {
        padding: 60px 0 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-form-card {
        padding: 28px 20px;
    }

    .hero-form-card h3 {
        font-size: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .angebote, .rechner, .info-section, .cta-section, .contact-section {
        padding: 60px 0;
    }

    .angebote h2, .info-section h2, .contact-section h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .bank-item {
        padding: 24px 20px;
    }

    .rechner-card {
        padding: 32px 20px;
    }

    .rechner-card h2 {
        font-size: 24px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .cta-card h2 {
        font-size: 24px;
    }

    .cta-card p {
        font-size: 16px;
    }

    .btn-cta-white {
        font-size: 14px;
        padding: 16px 32px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo h1 {
        font-size: 16px;
    }

    .logo svg {
        width: 36px;
        height: 36px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 40px 0 60px 0;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature h3 {
        font-size: 15px;
    }

    .hero-form-card {
        padding: 24px 16px;
    }

    .hero-form-card h3 {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .angebote, .rechner, .info-section, .cta-section, .contact-section {
        padding: 50px 0;
    }

    .angebote h2,
    .info-section h2,
    .contact-section h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .bank-item {
        padding: 20px 16px;
    }

    .bank-name {
        font-size: 14px;
    }

    .rate {
        font-size: 28px;
    }

    .rating-score {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .btn-bank {
        width: 100%;
        padding: 12px 20px;
    }

    .rechner-card {
        padding: 28px 16px;
    }

    .rechner-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 24px;
    }

    .rechner-icon svg {
        width: 36px;
        height: 36px;
    }

    .rechner-card h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .rechner-card p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .btn-calculate {
        width: 100%;
        padding: 14px 32px;
    }

    .info-card {
        padding: 28px 20px;
    }

    .info-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .info-card p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .cta-card {
        padding: 32px 20px;
    }

    .cta-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }

    .cta-icon svg {
        width: 40px;
        height: 40px;
    }

    .cta-card h2 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .cta-card p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .btn-cta-white {
        font-size: 12px;
        padding: 14px 24px;
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
    }

    .btn-primary {
        width: 100%;
    }

    .modal-content {
        width: 95%;
        padding: 28px 16px;
        margin: 10% auto;
    }

    .modal-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .modal-close {
        right: 16px;
        top: 16px;
        font-size: 28px;
    }

    .success-icon {
        width: 64px;
        height: 64px;
        font-size: 36px;
        margin-bottom: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .main-nav a:not(.cta-button) {
        font-size: 13px;
        padding: 8px 12px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .process-step {
        flex-direction: column;
    }

    .process-number {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
    }

    .steps-container .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.main-nav a:not(.cta-button) {
    position: relative;
}

.main-nav a:not(.cta-button):hover {
    color: var(--primary-green);
    background: var(--light-bg);
}

.main-nav a.active:not(.cta-button) {
    color: var(--primary-green);
    background: var(--light-bg);
}

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content-centered p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.content-main {
    flex: 1;
}

.content-main h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 24px;
}

.content-main h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.content-main p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.content-main ul, .content-main ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-main li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.sidebar {
    width: 320px;
    flex-shrink: 0;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    border: none;
}

.sidebar-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sidebar-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sidebar-card.highlight h3,
.sidebar-card.highlight h4 {
    color: var(--white);
}

.sidebar-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-gray);
}

.sidebar-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.sidebar-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sidebar-icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
}

.sidebar-card:not(.highlight) .sidebar-icon {
    background: var(--light-bg);
}

.sidebar-card:not(.highlight) .sidebar-icon svg {
    stroke: var(--primary-green);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.sidebar-card.highlight .check-list li {
    color: rgba(255, 255, 255, 0.9);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.sidebar-card.highlight .check-list li::before {
    color: var(--white);
}

.quick-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.quick-steps li {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 36px;
    position: relative;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    counter-increment: step-counter;
}

.quick-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: white;
}

.phone-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.hours {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 0;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.info-box {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-green);
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}

.info-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-green);
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 0;
}

.benefit-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.steps-container {
    margin: 32px 0;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 0;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 0;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.process-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-number svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.process-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 0;
}

.process-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.process-details {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

.process-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.process-details ul, .process-details ol {
    margin: 0;
    padding-left: 20px;
}

.process-details li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.glossary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.glossary-item {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
}

.glossary-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.glossary-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 768px) {
    .glossary {
        grid-template-columns: 1fr;
    }
}

.hero-simple {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 80px 0;
    color: var(--white);
}

.hero-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.hero-icon-large svg {
    stroke: white;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.95;
    margin-top: 16px;
}

.stats-section {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--light-bg);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

.clean-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-gray);
}

.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card-modern {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon-modern {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-modern.green {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
}

.feature-icon-modern.blue {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
}

.feature-icon-modern.orange {
    background: linear-gradient(135deg, #e65100 0%, #f57c00 100%);
}

.feature-icon-modern.purple {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
}

.feature-icon-modern svg {
    stroke: white;
}

.feature-card-modern h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card-modern p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.process-section {
    padding: 80px 0;
    background: var(--white);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 31px;
    top: 64px;
    width: 2px;
    height: calc(100% + 16px);
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--light-green) 100%);
    opacity: 0.3;
}

.timeline-marker {
    flex-shrink: 0;
}

.timeline-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.3);
}

.timeline-content {
    flex: 1;
    background: var(--light-bg);
    padding: 24px 28px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-green);
}

.timeline-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.timeline-icon svg {
    stroke: var(--primary-green);
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.faq-icon {
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.faq-icon svg {
    stroke: var(--primary-green);
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.cta-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-modern-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-modern-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.cta-modern-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-modern-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 36px;
    line-height: 1.7;
}

.btn-cta-large {
    display: inline-block;
    background: white;
    color: var(--primary-green);
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-card-large {
    background: var(--light-bg);
    padding: 48px 40px;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid var(--border-color);
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.intro-icon svg {
    stroke: white;
}

.intro-card-large h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.intro-card-large p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.key-feature {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.key-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.key-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--light-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.key-feature-icon svg {
    stroke: var(--primary-green);
}

.key-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.key-feature p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

.steps-section-modern {
    padding: 80px 0;
    background: var(--light-bg);
}

.modern-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

.modern-step {
    display: flex;
    gap: 28px;
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.modern-step:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.modern-step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.modern-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.3);
}

.modern-step-icon {
    width: 72px;
    height: 72px;
    background: var(--light-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-step-icon svg {
    stroke: var(--primary-green);
}

.modern-step-content {
    flex: 1;
}

.modern-step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.modern-step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.step-highlights {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.highlight-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--light-bg);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.benefits-section-alt {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card-alt {
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card-alt.green {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.08) 0%, rgba(46, 125, 50, 0.12) 100%);
    border: 2px solid rgba(27, 94, 32, 0.2);
}

.benefit-card-alt.blue {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.08) 0%, rgba(25, 118, 210, 0.12) 100%);
    border: 2px solid rgba(13, 71, 161, 0.2);
}

.benefit-card-alt.orange {
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.08) 0%, rgba(245, 124, 0, 0.12) 100%);
    border: 2px solid rgba(230, 81, 0, 0.2);
}

.benefit-card-alt:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon-alt {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-card-alt.green .benefit-icon-alt {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
}

.benefit-card-alt.blue .benefit-icon-alt {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
}

.benefit-card-alt.orange .benefit-icon-alt {
    background: linear-gradient(135deg, #e65100 0%, #f57c00 100%);
}

.benefit-icon-alt svg {
    stroke: white;
}

.benefit-card-alt h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.benefit-card-alt p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .key-features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-simple {
        padding: 60px 0;
    }

    .hero-icon-large {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }

    .hero-icon-large svg {
        width: 48px;
        height: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header-center h2 {
        font-size: 28px;
    }

    .section-header-center p {
        font-size: 15px;
    }

    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 24px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .clean-section,
    .process-section,
    .faq-section,
    .intro-section,
    .steps-section-modern,
    .benefits-section-alt {
        padding: 60px 0;
    }

    .features-grid-4 {
        grid-template-columns: 1fr;
    }

    .feature-card-modern {
        padding: 28px 20px;
    }

    .feature-icon-modern {
        width: 64px;
        height: 64px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .timeline-item:not(:last-child)::after {
        display: none;
    }

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

    .timeline-number {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .timeline-content {
        padding: 20px 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-card {
        padding: 24px;
    }

    .cta-section-modern {
        padding: 80px 0;
    }

    .cta-modern-icon {
        width: 80px;
        height: 80px;
    }

    .cta-modern-content h2 {
        font-size: 28px;
    }

    .cta-modern-content p {
        font-size: 16px;
    }

    .btn-cta-large {
        padding: 16px 40px;
        font-size: 16px;
    }

    .intro-card-large {
        padding: 32px 24px;
    }

    .intro-icon {
        width: 64px;
        height: 64px;
    }

    .intro-card-large h2 {
        font-size: 26px;
    }

    .intro-card-large p {
        font-size: 16px;
    }

    .modern-step {
        flex-direction: column;
        padding: 24px 20px;
    }

    .modern-step-visual {
        flex-direction: row;
        gap: 12px;
    }

    .modern-step-number {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .modern-step-icon {
        width: 64px;
        height: 64px;
    }

    .modern-step-content h3 {
        font-size: 20px;
    }

    .modern-step-content p {
        font-size: 15px;
    }

    .benefit-card-alt {
        padding: 32px 24px;
    }

    .benefit-icon-alt {
        width: 64px;
        height: 64px;
    }

    .benefit-card-alt h3 {
        font-size: 20px;
    }
}