@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-color: #004080; /* Classic dark blue */
    --secondary-color: #0073e6; /* Bright blue */
    --accent-color: #f8f9fa; /* Very light grey */
    --orange-color: #ff5722; /* Vivid Orange for accents */
    --gold-color: #ffc107; /* Gold for Preisliste */
    --light-blue-bar: #5bc0de;
    --dark-blue-bar: #2c3e50;
    --text-color: #333333;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --card-hover-shadow: 0 20px 40px rgba(0,0,0,0.12);
    --radius: 12px;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

ul {
    list-style: none;
}

/* --- MODERN HEADER & NAV --- */
header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

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

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 40px;
}

.logo span {
    color: var(--secondary-color);
}

/* Nav Layout */
.nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 25px;
    align-items: center;
}

.nav-row-top, .nav-row-bottom {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-row-bottom {
    margin-top: 8px; /* Space between rows */
}

/* Nav Item Styling */
.nav-item {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
    cursor: pointer;
    padding: 5px 0;
}

.nav-item:hover {
    color: var(--secondary-color);
}

/* Highlighted Item (Prijslijst) */
.nav-item.highlight-gold {
    color: #ffb300; /* Darker gold for readability on white */
    font-weight: 800;
}

.nav-item.highlight-gold:hover {
    color: #ffca28;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

/* Dropdown Styling */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--secondary-color);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0, 30, 60, 0.7), rgba(0, 30, 60, 0.7)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    padding: 120px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    background: rgba(0, 40, 80, 0.85);
    backdrop-filter: blur(12px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
    color: #e0e0e0;
}

.hero-benefits {
    text-align: left;
    margin: 0 auto 30px auto;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-benefits li {
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    color: #4CAF50;
    font-size: 1.2rem;
    min-width: 24px;
}

.hero-cta-text {
    font-weight: 700;
    color: #ffeb3b;
    font-size: 1.15rem;
    margin-bottom: 30px;
    display: inline-block;
    border-bottom: 2px solid #ffeb3b;
    padding-bottom: 5px;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 35px;
    border-radius: var(--radius);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 115, 230, 0.4);
}

.btn:hover {
    background-color: #005bb5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 115, 230, 0.6);
}

/* --- PROGRAMS SECTION --- */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-title .underline {
    width: 80px;
    height: 5px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: -50px;
}

.program-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 5px solid var(--secondary-color);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--accent-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.program-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    min-height: 3.2rem;
}

.program-desc {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.program-highlight {
    margin-top: auto;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    gap: 8px;
}

/* --- STATS SECTION --- */
.stats-section {
    padding: 100px 0;
    background-color: #f0f2f5;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e1e4e8' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.stats-info-card {
    background-color: #2c3e50;
    color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-info-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.stats-info-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.stats-visuals {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-color);
    border-left: 5px solid var(--secondary-color);
}

.stat-box:hover {
    transform: translateX(10px);
}

.stat-box.main-stat {
    padding: 40px 30px;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.stat-percentage {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.5rem;
    color: #444;
}

/* --- HELP SECTION --- */
.help-section {
    background-color: #111;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://www.transparenttextures.com/patterns/cubes.png');
}

.help-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.star-icon {
    font-size: 2rem;
    color: #333;
    margin-bottom: 50px;
    display: inline-block;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.help-card {
    background-color: var(--white);
    color: var(--text-color);
    padding: 40px 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    fill: #000;
}

.help-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.help-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.orange-btn {
    background-color: var(--orange-color);
    color: white;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
    letter-spacing: 0.5px;
}

.orange-btn:hover {
    background-color: #e64a19;
    color: white;
}

/* --- BENEFITS SECTION --- */
.benefits-section {
    padding: 100px 0;
    background-color: var(--accent-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--secondary-color);
    transition: height 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefit-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.benefit-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.benefit-card.money-card .benefit-icon-circle {
    background: linear-gradient(135deg, #fff9c4, #fff176);
    color: #fbc02d;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* --- ABOUT & PROCESS SECTION --- */
.detailed-about-section {
    padding: 0; 
    background-color: var(--white);
}

.about-split-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.about-text-half {
    flex: 1;
    min-width: 350px;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fcfcfc;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.about-image-half {
    flex: 1;
    min-width: 350px;
    background-image: url('https://images.unsplash.com/photo-1580674684081-7617fbf3d745?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.subtitle-small {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-weight: 600;
}

.about-text-half h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.dashed-underline {
    width: 80px;
    height: 0;
    border-bottom: 2px dashed var(--orange-color);
    margin-bottom: 30px;
}

.about-text-half p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
}

/* Process Section */
.process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

.process-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 50px;
    font-weight: 800;
}

.progress-group {
    margin-bottom: 35px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    width: 0;
    animation: fillBar 1.5s ease-out forwards;
}

@keyframes fillBar {
    from { width: 0; }
    to { width: var(--target-width); }
}

.fill-orange { background-color: var(--orange-color); }
.fill-blue { background-color: var(--light-blue-bar); }
.fill-dark { background-color: var(--dark-blue-bar); }

/* --- DOCUMENTS SECTION (New) --- */
.documents-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.docs-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.docs-text p {
    color: #555;
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.docs-image-container {
    position: relative;
    padding: 20px;
}

.docs-image-container img {
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-radius: 4px;
    transform: rotate(2deg);
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.docs-image-container img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quote-icon-bg {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.review-text {
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange-color);
}

.reviewer-name {
    font-weight: 700;
    color: var(--orange-color);
    font-size: 1rem;
}

.reviewer-role {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #ddd;
}

.faq-question {
    background-color: var(--white);
    padding: 25px 30px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #fcfcfc;
    color: var(--secondary-color);
}

.faq-question.active {
    color: var(--primary-color);
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.faq-question.active .faq-icon {
    transform: rotate(45deg); /* Turn + into x */
    color: var(--orange-color);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    background-color: #f8f9fa;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555;
    line-height: 1.7;
}

.faq-answer.open {
    padding: 20px 30px 30px; /* Add padding when open */
}

/* --- CONTACT SECTION --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item span {
    font-size: 1.5rem;
}

.contact-form-wrapper {
    padding: 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    height: 150px;
}

/* --- FOOTER --- */
footer {
    background-color: #111;
    color: #bbb;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 0.85rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-content h1 { font-size: 2rem; }
    .about-grid, .contact-container { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .docs-grid { grid-template-columns: 1fr; }
    .about-split-container { flex-direction: column; }
    .about-image-half { min-height: 250px; order: -1; }
    
    /* Responsive Header */
    .nav-wrapper {
        position: absolute;
        top: 70px;
        right: -100%;
        background-color: var(--white);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transition: 0.4s;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-row-top, .nav-row-bottom {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #f9f9f9;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}

.bg-light {
    background-color: var(--accent-color);
}
