/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #3182ce;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c5aa0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.25rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #48bb78;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #38a169;
}

.btn-cookie.secondary {
    background-color: #4a5568;
}

.btn-cookie.secondary:hover {
    background-color: #2d3748;
}

/* Header and Navigation */
.header-main {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: #4a5568;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2b6cb0;
    border-bottom-color: #2b6cb0;
}

/* Hero Section */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.25rem;
}

.hero-lead {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 1.5rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #3182ce;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.4);
}

.btn-primary.large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    background-color: transparent;
    color: #3182ce;
    border: 2px solid #3182ce;
}

.btn-secondary:hover {
    background-color: #3182ce;
    color: #ffffff;
}

/* Card System */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

/* Stats Cards */
.stats-cards {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem 1.5rem;
}

.stat-card h3 {
    font-size: 3rem;
    color: #3182ce;
    margin-bottom: 0.75rem;
}

.stat-card p {
    color: #4a5568;
    font-size: 1.05rem;
}

/* Content Sections */
.content-section,
.problem-section,
.approach-section,
.methodology-section,
.values-section,
.impact-section,
.research-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.content-wrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.content-block,
.problem-text {
    flex: 1;
}

.content-block h2,
.problem-text h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1.25rem;
}

.content-block p,
.problem-text p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.visual-block,
.problem-visual {
    flex: 1;
}

.visual-block img,
.problem-visual img {
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-highlight,
.services-intro,
.services-detailed {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.services-highlight h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border: 3px solid #3182ce;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #3182ce;
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 1.25rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 0.625rem;
}

.age-badge {
    display: inline-block;
    background-color: #edf2f7;
    color: #2d3748;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.feature-list li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: #4a5568;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.125rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b6cb0;
}

.btn-select {
    padding: 0.75rem 1.5rem;
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #2c5aa0;
    transform: translateY(-2px);
}

/* Service Detail Cards */
.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.featured-service {
    border: 3px solid #3182ce;
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.service-header-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.service-price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0.375rem;
}

.service-detail-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-description h3 {
    font-size: 1.375rem;
    color: #1a202c;
    margin: 1.75rem 0 0.875rem;
}

.service-description h3:first-child {
    margin-top: 0;
}

.detailed-list,
.programme-specs,
.research-list {
    list-style: none;
    padding-left: 0;
}

.detailed-list li,
.programme-specs li,
.research-list li {
    padding: 0.625rem 0 0.625rem 1.75rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.detailed-list li::before,
.programme-specs li::before,
.research-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: bold;
}

/* Philosophy Grid */
.philosophy-section,
.team-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.philosophy-section h2,
.team-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.philosophy-grid,
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-card,
.team-card {
    flex: 1;
    min-width: 280px;
}

.philosophy-card h3,
.team-card h4 {
    font-size: 1.375rem;
    color: #2b6cb0;
    margin-bottom: 0.875rem;
}

.philosophy-card p,
.team-card p {
    color: #4a5568;
    line-height: 1.7;
}

.team-image {
    margin-bottom: 1.25rem;
    overflow: hidden;
    border-radius: 12px;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #4a5568;
}

/* Methodology Steps */
.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 12px;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3182ce;
    min-width: 60px;
}

.step-card h4 {
    font-size: 1.375rem;
    color: #1a202c;
    margin-bottom: 0.625rem;
}

.step-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Values List */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item h4 {
    font-size: 1.375rem;
    color: #2b6cb0;
    margin-bottom: 0.625rem;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Approach Cards */
.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.approach-card {
    flex: 1;
    min-width: 260px;
}

.approach-card h4 {
    font-size: 1.25rem;
    color: #2b6cb0;
    margin-bottom: 0.75rem;
}

.approach-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section,
.testimonial-thanks-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.testimonials-section h2,
.testimonial-thanks-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.testimonials-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #f7fafc;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2b6cb0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 1.5rem;
    margin: 4rem 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* Form Section */
.form-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.form-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.form-container h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.form-intro {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.submit-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* FAQ Section */
.faq-section,
.faq-contact-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.faq-section h2,
.faq-contact-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item h4 {
    font-size: 1.25rem;
    color: #2b6cb0;
    margin-bottom: 0.625rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.faq-card {
    flex: 1;
    min-width: 300px;
}

/* Contact Section */
.contact-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2,
.contact-info h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-info h2 {
    font-size: 2rem;
}

.contact-info h3 {
    font-size: 1.375rem;
}

.contact-info p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-card {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.small-note {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5rem;
}

.contact-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-visual img {
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.info-box {
    background-color: #edf2f7;
    padding: 1.5rem;
    border-radius: 12px;
}

.info-box h3 {
    font-size: 1.25rem;
    color: #2b6cb0;
    margin-bottom: 0.75rem;
}

.info-box p {
    color: #4a5568;
    line-height: 1.6;
}

/* Directions Section */
.directions-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.directions-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a202c;
}

.directions-content p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.direction-card {
    flex: 1;
    min-width: 250px;
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.direction-card h4 {
    font-size: 1.25rem;
    color: #2b6cb0;
    margin-bottom: 0.75rem;
}

.direction-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-hero {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.thanks-content {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
}

.success-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.thanks-hero h1 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.thanks-details p {
    color: #4a5568;
    line-height: 1.7;
}

/* Next Steps Section */
.next-steps-section,
.prepare-section,
.additional-info-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.next-steps-section h2,
.prepare-section h2,
.additional-info-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.steps-grid,
.prepare-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.prepare-card {
    flex: 1;
    min-width: 260px;
}

.prepare-card h3 {
    font-size: 1.375rem;
    color: #2b6cb0;
    margin-bottom: 0.875rem;
}

.prepare-card p {
    color: #4a5568;
    line-height: 1.7;
}

.info-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.info-content p {
    color: #4a5568;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.contact-quick {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-quick p {
    margin-bottom: 0.75rem;
}

/* Comparison Section */
.comparison-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.comparison-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.comparison-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.guide-item {
    flex: 1;
    min-width: 300px;
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.guide-item h4 {
    font-size: 1.25rem;
    color: #2b6cb0;
    margin-bottom: 0.75rem;
}

.guide-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: #1a202c;
    margin: 2.5rem 0 1rem;
}

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

.legal-content h3 {
    font-size: 1.375rem;
    color: #2b6cb0;
    margin: 2rem 0 0.875rem;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #3182ce;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.875rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookies-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.cookies-table td {
    color: #4a5568;
}

/* Footer */
.footer-main {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.625rem;
}

.footer-section a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: #48bb78;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(72, 187, 120, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #38a169;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(72, 187, 120, 0.5);
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        align-items: center;
    }

    .content-wrap {
        flex-direction: row;
        align-items: center;
    }

    .contact-grid {
        flex-direction: row;
    }

    .service-detail-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .service-detail-body {
        flex-direction: row;
    }

    .service-description {
        flex: 2;
    }

    .service-visual {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1rem 1.5rem;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 0.875rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .service-card {
        min-width: 100%;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .stat-card h3 {
        font-size: 2.5rem;
    }

    .form-container {
        padding: 1.5rem;
    }
}