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

:root {
    --primary: #2C5F2D;
    --secondary: #97BC62;
    --accent: #F4A460;
    --dark: #1a1a1a;
    --light: #f9f9f9;
    --gray: #666;
    --white: #ffffff;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

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

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

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

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

header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Arial', sans-serif;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    color: var(--dark);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #234a24;
    transform: translateY(-2px);
}

.article-section {
    padding: 60px 0;
}

.article-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.article-section h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--primary);
}

.article-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.inline-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.inline-cta {
    background: var(--light);
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.inline-cta h3 {
    margin-top: 0;
    color: var(--dark);
}

.inline-cta p {
    margin-bottom: 25px;
}

.cta-secondary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-secondary:hover {
    background: #e09450;
    transform: translateY(-2px);
}

.story-block {
    background: #f8f9fa;
    padding: 50px 0;
}

.testimonial {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 30px 0;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark);
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-card h3 {
    margin-top: 0;
    color: var(--primary);
    font-size: 1.6rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.service-features li:before {
    content: "✓ ";
    color: var(--secondary);
    font-weight: 700;
    margin-right: 10px;
}

.form-section {
    background: var(--light);
    padding: 60px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 99;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-btn {
    background: var(--white);
    color: var(--primary);
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cookie-reject {
    background: var(--gray);
    color: var(--white);
}

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

footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary);
}

.legal-page p {
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

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

.contact-page {
    padding: 60px 0;
}

.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.info-item p {
    color: var(--gray);
    line-height: 1.6;
}

.thanks-page {
    padding: 100px 0;
    text-align: center;
}

.thanks-page h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.thanks-page p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.about-content {
    padding: 60px 0;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.services-page {
    padding: 60px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-content {
        flex-direction: column;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}
