:root {
    --primary-color: #5D8C7B; /* Sage Green */
    --primary-dark: #4A7062;
    --secondary-color: #F2E8DC; /* Cream */
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #FFFFFF;
    --bg-alt: #F9F7F5;
    --accent-color: #D4A373; /* Earthy tone */
    --border-radius: 8px;
    --container-width: 1200px;
    --spacing-unit: 1rem;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: var(--primary-dark); }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    font-size: 1rem;
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

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

.btn-text {
    background-color: transparent;
    color: var(--text-light);
    text-decoration: underline;
}

/* Header */
.site-header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.header-contact a {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Hero Section */
.hero-banner {
    background-color: var(--secondary-color);
    padding: 4rem 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

/* Content Blocks */
.content-block {
    padding: 4rem 0;
}

.content-block:nth-child(even) {
    background-color: var(--bg-alt);
}

.block-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.block-image-right .block-container {
    flex-direction: row-reverse;
}

.block-text {
    flex: 1;
}

.block-image {
    flex: 1;
}

/* Reviews */
.reviews-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

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

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

.review-card {
    background-color: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.review-avatar {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.contact-container {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(93, 140, 123, 0.2);
}

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

.social-link {
    color: white;
    background-color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
}

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

/* Footer */
.site-footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    font-size: 0.875rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: #ccc;
    margin: 0 0.5rem;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.footer-social a {
    color: #ccc;
    font-size: 0.9rem;
    text-decoration: underline;
}

.footer-social a:hover {
    color: white;
    text-decoration: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 1000;
    border-top: 1px solid #eee;
}

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

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

.cookie-settings {
    max-width: var(--container-width);
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.cookie-option {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-container,
    .block-container {
        flex-direction: column;
        text-align: center;
    }
    
    .block-image-right .block-container {
        flex-direction: column;
    }

    .block-image {
        order: -1;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
