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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2D5A27;
    background-color: #FFFFFF;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    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; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #7FB069;
}

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

/* Header */
.header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(45, 90, 39, 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 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #E8F5E8;
    color: #2D5A27;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2D5A27;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 2px 10px rgba(45, 90, 39, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

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

.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2D5A27;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #2D5A27;
    opacity: 0.8;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2D5A27;
    color: #FFFFFF;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #2D5A27;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #7FB069;
    border-color: #7FB069;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: #2D5A27;
}

.cta-button.secondary:hover {
    background-color: #2D5A27;
    color: #FFFFFF;
}

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

/* Sections */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* About Preview */
.about-preview {
    background-color: #F8FDF8;
}

.learn-more {
    color: #2D5A27;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.learn-more:hover {
    color: #7FB069;
}

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

.service-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 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(45, 90, 39, 0.15);
}

.service-card h3 {
    margin: 1rem 0;
    color: #2D5A27;
}

/* Company Goals */
.company-goals {
    background-color: #E8F5E8;
}

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

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

.goal-item h3 {
    margin: 1rem 0;
    color: #2D5A27;
}

/* Company Successes */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.achievement {
    text-align: center;
    padding: 2rem 1rem;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.1);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

.achievement-text {
    font-weight: 600;
    color: #7FB069;
}

/* Team Preview */
.team-preview {
    background-color: #F8FDF8;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #2D5A27 0%, #7FB069 100%);
    color: #FFFFFF;
}

.cta-content {
    text-align: center;
    color: #FFFFFF;
}

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

.cta-content p {
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

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

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

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

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

.footer-section a {
    color: #FFFFFF;
    opacity: 0.8;
}

.footer-section a:hover {
    opacity: 1;
    color: #7FB069;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #7FB069;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.25rem;
    color: #2D5A27;
    opacity: 0.8;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.image-content svg {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

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

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

.value-card h3 {
    margin: 1rem 0;
    color: #2D5A27;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #7FB069;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #2D5A27;
    color: #FFFFFF;
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding: 0 2rem;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.1);
    margin: 0 2rem;
    padding: 2rem;
}

.timeline-content h3 {
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

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

.award-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-item h3 {
    margin: 1rem 0 0.5rem;
    color: #2D5A27;
}

.award-item p {
    color: #7FB069;
    font-weight: 600;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    text-align: center;
}

/* Services Detail */
.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(45, 90, 39, 0.1);
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

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

.service-icon {
    margin-bottom: 2rem;
}

.service-detail-card h2 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7FB069;
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5A27;
    background: #E8F5E8;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
}

/* Process */
.our-process {
    background: #F8FDF8;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2D5A27;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    background: #E8F5E8;
}

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

.testimonial-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #2D5A27;
    margin: 0;
}

.testimonial-author strong {
    color: #2D5A27;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #7FB069;
    font-size: 0.9rem;
}

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

.team-member {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(45, 90, 39, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.team-member h3 {
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #7FB069;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.member-specialties span {
    background: #E8F5E8;
    color: #2D5A27;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Team Values */
.team-values {
    background: #F8FDF8;
}

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

/* Join Team */
.join-team {
    background: #E8F5E8;
}

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

.current-openings {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.1);
}

.current-openings h3 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

.current-openings ul {
    list-style: none;
    text-align: left;
}

.current-openings li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.current-openings li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #7FB069;
    font-weight: bold;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-form-container,
.contact-info-container {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(45, 90, 39, 0.1);
}

.contact-form-container h2,
.contact-info-container h2 {
    color: #2D5A27;
    margin-bottom: 2rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

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

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

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

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

.checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #E8F5E8;
    border-radius: 4px;
    flex-shrink: 0;
}

.submit-btn {
    background: #2D5A27;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #7FB069;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

/* Contact Methods */
.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
}

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

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

.contact-details small {
    color: #7FB069;
    font-size: 0.9rem;
}

.contact-details a {
    color: #2D5A27;
    font-weight: 600;
}

.contact-details a:hover {
    color: #7FB069;
}

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

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

/* FAQ */
.faq-section {
    background: #F8FDF8;
    padding: 4rem 0;
}

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

.faq-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.1);
}

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

/* Thank You Page */
.thank-you-section {
    padding: 6rem 0;
    text-align: center;
}

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

.success-icon {
    margin-bottom: 2rem;
}

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

.lead {
    font-size: 1.5rem;
    color: #7FB069;
    margin-bottom: 2rem;
}

.thank-you-details {
    background: #F8FDF8;
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
}

.next-steps h2 {
    color: #2D5A27;
    margin-bottom: 2rem;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: #2D5A27;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

.urgent-contact {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.1);
}

.urgent-contact h3 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2D5A27;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
}

.phone-link:hover {
    color: #7FB069;
}

.action-buttons {
    margin-top: 3rem;
}

/* While You Wait */
.while-you-wait {
    background: #E8F5E8;
    padding: 4rem 0;
}

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

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

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

.suggestion-card h3 {
    color: #2D5A27;
    margin: 1rem 0;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-page h1 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

.last-updated {
    color: #7FB069;
    font-style: italic;
    margin-bottom: 3rem;
}

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

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

.legal-content h2 {
    color: #2D5A27;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

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

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

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

.contact-details {
    background: #F8FDF8;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2D5A27;
    color: #FFFFFF;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent:not(.hidden) {
    transform: translateY(0);
}

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

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

.cookie-content a {
    color: #7FB069;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background: #7FB069;
    color: #FFFFFF;
}

.cookie-btn.accept:hover {
    background: #66A556;
}

.cookie-btn.necessary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.cookie-btn.necessary:hover {
    background: #FFFFFF;
    color: #2D5A27;
}

.cookie-btn.customize {
    background: transparent;
    color: #7FB069;
    border: 2px solid #7FB069;
}

.cookie-btn.customize:hover {
    background: #7FB069;
    color: #FFFFFF;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #2D5A27;
    margin-bottom: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 2px solid #E8F5E8;
    border-radius: 12px;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 600;
    color: #2D5A27;
    cursor: pointer;
}

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

.cookie-category p {
    margin-top: 0.75rem;
    margin-bottom: 0;
    color: #666;
    font-weight: normal;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: row;
        padding-left: 4rem;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .hero {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .service-card,
    .value-card,
    .team-member {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-consent,
    .cookie-modal,
    .cta-button,
    .nav-toggle {
        display: none !important;
    }
    
    main {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .service-card,
    .team-member,
    .testimonial-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}