:root {
    --primary-color: #2c5530;
    --primary-dark: #1e3d22;
    --secondary-color: #8b6914;
    --accent-color: #c4a35a;
    --text-color: #333333;
    --text-light: #666666;
    --background: #ffffff;
    --background-alt: #f8f6f3;
    --border-color: #e5e5e5;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --header-height: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

h1, h2, h3, h4 {
    color: var(--primary-color);
    line-height: 1.3;
    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;
}

ul {
    list-style: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--background);
    box-shadow: var(--shadow);
    z-index: 1000;
    height: var(--header-height);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

main {
    padding-top: var(--header-height);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.hero {
    padding: 80px 0;
    background: var(--background-alt);
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 20px 20px 10px;
}

.feature-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.mission {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

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

.mission h2 {
    color: white;
}

.mission p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.mission .btn-primary {
    background: white;
    color: var(--primary-color);
}

.mission .btn-primary:hover {
    background: var(--accent-color);
}

.mission-image {
    border-radius: 10px;
    overflow: hidden;
}

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

.booking {
    padding: 80px 0;
    background: var(--background-alt);
}

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

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--background);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-checkbox label a {
    color: var(--primary-color);
}

.booking-form .btn {
    width: 100%;
    margin-top: 10px;
}

.page-header {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.about-intro {
    padding: 80px 0;
}

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

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.mission-section {
    padding: 60px 0;
    background: var(--background-alt);
    text-align: center;
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto 20px;
}

.mission-statement .lead {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-style: italic;
}

.values-section {
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--background-alt);
    border-radius: 10px;
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.what-we-do {
    padding: 80px 0;
    background: var(--background-alt);
}

.what-we-do h2 {
    margin-bottom: 40px;
}

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

.do-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.do-text ul {
    margin-top: 20px;
}

.do-text li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.do-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

.hours table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.hours td {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours td:first-child {
    font-weight: 500;
}

.hours td:last-child {
    text-align: right;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--background-alt);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
}

.contact-form .btn {
    width: 100%;
}

.map-section {
    padding: 60px 0;
    background: var(--background-alt);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.services-intro {
    padding: 60px 0 20px;
}

.services-grid-section {
    padding: 40px 0 80px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.service-card.reverse {
    direction: rtl;
}

.service-card.reverse > * {
    direction: ltr;
}

.service-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-content ul {
    margin-top: 20px;
}

.service-content li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-light);
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.services-cta {
    padding: 80px 0;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.services-cta h2 {
    color: white;
}

.services-cta p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.services-cta .btn-secondary {
    border-color: white;
    color: white;
}

.services-cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.business-section {
    padding: 80px 0;
}

.business-content {
    margin-bottom: 60px;
}

.business-content:last-child {
    margin-bottom: 0;
}

.audience-grid,
.revenue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.audience-item,
.revenue-item {
    background: var(--background-alt);
    padding: 25px;
    border-radius: 10px;
}

.audience-item h3,
.revenue-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.audience-item p,
.revenue-item p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.data-collection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.data-item {
    background: var(--background-alt);
    padding: 25px;
    border-radius: 10px;
}

.data-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.data-item p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.data-item .purpose {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.legal-content {
    padding: 80px 0;
}

.legal-content .last-updated {
    color: var(--text-light);
    margin-bottom: 30px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-content h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content ul {
    margin-left: 25px;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content .contact-block {
    background: var(--background-alt);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.legal-content .contact-block p {
    margin-bottom: 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--primary-color);
    color: white;
}

.cookie-table tr:nth-child(even) {
    background: var(--background-alt);
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer h4 {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-info p {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: #aaa;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom .disclaimer {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-bottom .copyright {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.cookie-modal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-bottom: 8px;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.cookie-option p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cookie-modal-buttons .btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 15px;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card.reverse {
        direction: ltr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--background);
        box-shadow: var(--shadow);
        display: none;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-list a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-list a::after {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .mission .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content,
    .do-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid,
    .revenue-grid,
    .data-collection {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .cookie-modal-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .booking-form,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .btn {
        padding: 10px 20px;
    }
}
