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

html {
    scroll-behavior: smooth;
}

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

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #2c5530;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d1f;
}

/* Buttons */
.cta-button, .secondary-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.cta-button {
    background-color: #2c5530;
    color: white;
}

.cta-button:hover {
    background-color: #1a3d1f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.secondary-button {
    background-color: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.secondary-button:hover {
    background-color: #2c5530;
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-btn.primary {
    background-color: #2c5530;
    color: white;
}

.cookie-btn.secondary {
    background-color: #666;
    color: white;
}

.cookie-btn.outline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    opacity: 0.8;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

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

.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 20px;
}

.cookie-settings {
    margin: 20px 0;
}

.cookie-category {
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cookie-category h4 {
    margin-bottom: 8px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.cookie-toggle input[type="checkbox"] {
    margin-right: 10px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    height: 50px;
    width: auto;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #2c5530;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2c5530;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

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

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    padding: 0;
}

.content-block {
    padding: 4rem 0;
}

.content-block:nth-child(even) {
    background-color: #f8f9fa;
}

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

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

/* Goals Section */
.goals-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.goal-item {
    text-align: center;
    padding: 1.5rem;
}

.goal-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Success Stats */
.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-weight: 600;
    color: #666;
    margin-bottom: 0;
}

/* Team Preview */
.team-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.instructor-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.instructor-card h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: #666;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Location Section */
.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-info h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.location-info ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.location-info li {
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.cta-section .secondary-button {
    border-color: white;
    color: white;
}

.cta-section .secondary-button:hover {
    background-color: white;
    color: #2c5530;
}

/* About Page Styles */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

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

.feature-list h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.feature-list ul {
    list-style-position: inside;
}

.feature-list li {
    margin-bottom: 0.5rem;
    color: #666;
}

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

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.achievement-highlights ul {
    padding-left: 2rem;
}

.achievement-highlights li {
    margin-bottom: 0.5rem;
}

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

.reason-item {
    padding: 1.5rem;
}

.reason-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Services Page Styles */
.service-section {
    border-bottom: 1px solid #eee;
}

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

.service-content {
    margin-top: 2rem;
}

.service-info h4 {
    color: #2c5530;
    margin: 2rem 0 1rem 0;
}

.service-info ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.service-info li {
    margin-bottom: 0.5rem;
}

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

.program-details p {
    margin-bottom: 0.5rem;
}

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

.additional-services .service-card {
    text-align: center;
}

.price {
    font-weight: 600;
    color: #2c5530;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Team Page Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.member-info h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.member-qualifications,
.member-specialties,
.member-bio {
    margin-bottom: 1.5rem;
}

.member-qualifications h4,
.member-specialties h4 {
    color: #2c5530;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.member-qualifications ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.member-qualifications li {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.member-specialties p {
    font-weight: 500;
    color: #666;
}

.member-bio p {
    line-height: 1.7;
    color: #555;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Progress Page Styles */
.stats-overview {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
}

.stats-overview .section-header h2,
.stats-overview .section-header p {
    color: white;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-card p {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

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

.story-header h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.story-subtitle {
    color: #666;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.method-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.method-card ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.method-card li {
    margin-bottom: 0.5rem;
}

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

.milestone-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.milestone-category h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    text-align: center;
}

.milestone-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.milestone-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.milestone-item h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.milestone-item p {
    color: #666;
    margin-bottom: 0;
}

.alumni-content {
    margin-top: 2rem;
}

.destination-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.destination-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.destination-item h4 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.alumni-engagement ul {
    padding-left: 2rem;
    margin-top: 1rem;
}

.alumni-engagement li {
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-details h2 {
    color: #2c5530;
    margin-bottom: 2rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-method .contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-info h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info span {
    font-size: 0.9rem;
    color: #666;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

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

.social-contact .social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.social-contact .social-links a:hover {
    background: #e9ecef;
}

.social-contact .social-links img {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #2c5530;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: block;
}

.submit-button {
    background-color: #2c5530;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #1a3d1f;
    transform: translateY(-1px);
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.button-loading {
    display: none;
}

/* Visit Section */
.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.visit-info h3,
.directions h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.visit-info ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.visit-info li {
    margin-bottom: 0.5rem;
}

.emergency-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.emergency-info h4 {
    color: #dc3545;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Hours and Pricing */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.hours-info,
.quick-pricing {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hours-info h2,
.quick-pricing h2 {
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.day-hours,
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.day-hours:last-child,
.price-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

.hours,
.price {
    color: #2c5530;
    font-weight: 600;
}

.hours-note,
.pricing-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

/* Thanks Page Styles */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    color: #28a745;
}

.thank-you-content h1 {
    color: #2c5530;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #666;
}

.next-steps,
.contact-reminder,
.while-you-wait,
.social-follow {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2,
.contact-reminder h2,
.while-you-wait h2,
.social-follow h2 {
    color: #2c5530;
    text-align: center;
    margin-bottom: 2rem;
}

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

.step-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #2c5530;
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.immediate-contact {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

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

.explore-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: #333;
}

.explore-link:hover {
    background: #e9ecef;
    color: #2c5530;
}

.explore-link img {
    width: 24px;
    height: 24px;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: #333;
}

.social-link:hover {
    background: #e9ecef;
    color: #2c5530;
}

.social-link img {
    width: 24px;
    height: 24px;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Legal Content Styles */
.legal-content {
    padding: 2rem 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.last-updated {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.legal-document h2 {
    color: #2c5530;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.legal-document h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-document h3 {
    color: #2c5530;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-document ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-document li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.cookie-controls {
    text-align: center;
    margin: 2rem 0;
}

.cookie-settings-btn {
    background-color: #2c5530;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-settings-btn:hover {
    background-color: #1a3d1f;
}

/* Footer */
.footer {
    background-color: #2c5530;
    color: white;
    padding: 3rem 0 1rem 0;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-links img {
    width: 24px;
    height: 24px;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.contact-details img {
    width: 16px;
    height: 16px;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

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

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

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

    .cta-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .legal-document {
        padding: 2rem 1rem;
    }

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

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

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

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

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

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .services-grid,
    .goals-content,
    .team-preview,
    .values-grid,
    .tracking-methods,
    .milestones-grid {
        grid-template-columns: 1fr;
    }

    .success-stats,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .thank-you-content h1 {
        font-size: 2.5rem;
    }

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

    .explore-links,
    .social-follow .social-links {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cta-section {
        display: none;
    }

    .main-content {
        padding: 0;
    }

    .content-block {
        padding: 1rem 0;
        break-inside: avoid;
    }

    .legal-document {
        box-shadow: none;
        padding: 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2c5530;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card,
    .value-card,
    .team-member,
    .story-card {
        border: 2px solid #333;
    }
}
