/* ==========================================================================
   CSS Reset and Base Styles
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #1B5E20;
}

h2 {
    font-size: 2rem;
    color: #2E7D32;
}

h3 {
    font-size: 1.5rem;
    color: #2E7D32;
}

h4 {
    font-size: 1.25rem;
    color: #2E7D32;
}

p {
    margin-bottom: 1rem;
    color: #0f0101;
}

/* ==========================================================================
   Layout and Container
   ========================================================================== */

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E7D32;
}

.nav-logo svg {
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
}

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

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4CAF50;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #2E7D32;
    margin: 3px 0;
    transition: 0.3s;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.btn-primary:hover {
    background-color: #45a049;
    border-color: #45a049;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #2E7D32;
    color: white;
    border-color: #2E7D32;
}

.btn-secondary:hover {
    background-color: #1B5E20;
    border-color: #1B5E20;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #063b07;
    border-color: #4CAF50;
}

.btn-outline:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1B5E20;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #0c5710;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
    padding: 5rem 0;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2E7D32;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-link {
    color: #4CAF50;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #2E7D32;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    padding: 5rem 0;
    background-color: #F8FBF8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-svg {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq {
    padding: 5rem 0;
    background-color: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #4CAF50;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #4CAF50;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #666;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */

.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
}

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

.newsletter-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: #E8F5E8;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
}

.form-group input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: 2px solid #81C784;
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: #C8E6C9;
}

.newsletter-privacy a {
    color: #E8F5E8;
    text-decoration: underline;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    padding: 5rem 0;
    background-color: #F8FBF8;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    padding: 0.5rem;
    background-color: #E8F5E8;
    border-radius: 8px;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #2E7D32;
}

.contact-details p {
    margin-bottom: 0;
    color: #666;
}

.contact-details a {
    color: #4CAF50;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2E7D32;
}

.contact-form-section {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: #1B5E20;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #81C784;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo svg {
    margin-right: 0.5rem;
}

.footer-section p {
    color: #C8E6C9;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: #E8F5E8;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #81C784;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #0b420d;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #81C784;
}

.footer-bottom {
    border-top: 1px solid #2E7D32;
    padding-top: 1rem;
    text-align: center;
    color: #C8E6C9;
}

/* ==========================================================================
   Cookie Banner and Modal
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2E7D32;
    color: white;
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text p {
    margin-bottom: 0;
    color: #E8F5E8;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
    color: #2E7D32;
}

.cookie-category {
    margin-bottom: 1rem;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-category span {
    font-size: 0.9rem;
    color: #666;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* ==========================================================================
   Service Pages Styles
   ========================================================================== */

.service-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-large {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1B5E20;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #2E7D32;
    max-width: 600px;
    margin: 0 auto;
}

.service-details {
    padding: 5rem 0;
    background-color: #ffffff;
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-overview {
    margin-bottom: 4rem;
}

.service-overview h2 {
    margin-bottom: 1.5rem;
}

.service-overview p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.program-highlights,
.leadership-approach,
.retreat-benefits,
.adventure-philosophy {
    margin-bottom: 4rem;
}

.highlights-grid,
.approach-grid,
.benefits-grid,
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item,
.approach-item,
.benefit-item,
.philosophy-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #F8FBF8;
    border-radius: 12px;
}

.highlight-icon,
.approach-icon,
.benefit-icon,
.philosophy-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.activities-section,
.program-modules,
.retreat-formats,
.adventure-activities {
    margin-bottom: 4rem;
}

.activities-list,
.modules-list,
.formats-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.activity-item,
.module-item,
.format-item {
    background-color: #F8FBF8;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4CAF50;
}

.module-header,
.format-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.module-duration,
.format-duration {
    background-color: #4CAF50;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.module-outcomes,
.format-features {
    margin-top: 1rem;
}

.module-outcomes ul,
.format-features ul {
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.module-outcomes li,
.format-features li {
    margin-bottom: 0.25rem;
    color: #666;
}

.benefits-outcomes,
.leadership-outcomes,
.retreat-outcomes {
    margin-bottom: 4rem;
}

.outcomes-grid,
.outcomes-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.outcome-category {
    background-color: #F8FBF8;
    padding: 2rem;
    border-radius: 12px;
}

.outcome-category h4 {
    margin-bottom: 1rem;
    color: #2E7D32;
}

.outcome-category ul {
    margin-left: 1rem;
}

.outcome-category li {
    margin-bottom: 0.5rem;
    color: #666;
}

.daily-structure {
    margin-bottom: 4rem;
}

.schedule-timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #F8FBF8;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.timeline-time {
    font-weight: 600;
    color: #2E7D32;
    font-size: 0.9rem;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: #2E7D32;
}

.timeline-content p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
}

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

.activity-showcase-item,
.benefit-showcase-item {
    background-color: #F8FBF8;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4CAF50;
}

.activity-showcase-item h4,
.benefit-showcase-item h4 {
    margin-bottom: 1rem;
    color: #2E7D32;
}

.activities-categories {
    margin-top: 2rem;
}

.activity-category {
    margin-bottom: 3rem;
    background-color: #F8FBF8;
    padding: 2rem;
    border-radius: 12px;
}

.category-activities {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-detail {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
}

.activity-detail h5 {
    margin-bottom: 0.5rem;
    color: #2E7D32;
}

.safety-standards,
.accommodation-details,
.customization-options {
    margin-bottom: 4rem;
}

.safety-grid,
.logistics-grid,
.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.safety-item,
.logistics-item,
.customization-item {
    background-color: #F8FBF8;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.safety-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.customization-item ul {
    text-align: left;
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.customization-item li {
    margin-bottom: 0.25rem;
    color: #666;
}

.service-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #E8F5E8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.activity-card {
    background-color: #F8FBF8;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4CAF50;
}

.activity-card h4 {
    margin-bottom: 1rem;
    color: #2E7D32;
}

/* ==========================================================================
   Legal Pages Styles
   ========================================================================== */

.legal-page {
    padding: 8rem 0 4rem;
    background-color: #ffffff;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-updated {
    color: #666;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    margin-bottom: 1.5rem;
    color: #2E7D32;
    border-bottom: 2px solid #E8F5E8;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2E7D32;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-details {
    background-color: #F8FBF8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.cookie-settings-section {
    background-color: #F8FBF8;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

/* ==========================================================================
   Thank You Page Styles
   ========================================================================== */

.thank-you {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thank-you h1 {
    margin-bottom: 1.5rem;
    color: #1B5E20;
}

.thank-you-message {
    font-size: 1.1rem;
    color: #2E7D32;
    margin-bottom: 2rem;
}

.thank-you-details {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-details h3 {
    margin-bottom: 1rem;
    color: #2E7D32;
}

.thank-you-details ul {
    text-align: left;
    margin-left: 2rem;
}

.thank-you-details li {
    margin-bottom: 0.5rem;
    color: #666;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.thank-you-social {
    margin-top: 2rem;
}

.thank-you-social p {
    margin-bottom: 1rem;
    color: #666;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-list li {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-right: 0;
    }

    .stats {
        justify-content: space-around;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-subtitle {
        font-size: 1.1rem;
    }

    .highlights-grid,
    .approach-grid,
    .benefits-grid,
    .philosophy-grid,
    .outcomes-grid,
    .outcomes-categories,
    .safety-grid,
    .logistics-grid,
    .customization-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-time {
        text-align: center;
        background-color: #4CAF50;
        color: white;
        padding: 0.5rem;
        border-radius: 4px;
    }

    .activities-showcase,
    .benefits-showcase {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-content {
        padding: 1rem;
        width: 95%;
    }

    .modal-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .hero-bg,
    .service-cta,
    .footer {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }

    .service-details,
    .legal-content {
        padding: 0;
    }
}

/* ==========================================================================
   Accessibility Improvements
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #ffffff;
    }
    
    .hero-title,
    .hero-subtitle {
        color: #000000;
    }
    
    .btn-primary {
        background-color: #000000;
        border-color: #000000;
    }
    
    .btn-outline {
        color: #000000;
        border-color: #000000;
    }
}
