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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e3f;
    background: #fdfcfa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 600;
    color: #1a2728;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    margin-top: 3rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

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

a {
    color: #3a7d5c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2a5d4c;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 39, 40, 0.96);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    background: #3a7d5c;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 3px;
}

.btn-cookie:hover {
    background: #2a5d4c;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid #fff;
}

.btn-cookie.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2728;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.nav-menu a {
    color: #2c3e3f;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a2728;
    transition: 0.3s;
}

/* Editorial Content Layout */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.hero-editorial {
    margin-bottom: 4rem;
}

.hero-text-narrow {
    margin-bottom: 2.5rem;
}

.intro-text {
    font-size: 1.35rem;
    color: #4a5c5d;
    line-height: 1.6;
    margin-top: 1rem;
}

.hero-image {
    margin: 3rem 0;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
}

/* Content Blocks */
.content-block {
    margin-bottom: 4rem;
}

.text-narrow {
    max-width: 100%;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.8rem;
    color: #1a2728;
}

.content-block p {
    margin-bottom: 1.5rem;
}

/* Visual Breaks */
.visual-break {
    margin: 5rem -1.5rem;
}

.visual-break img {
    width: 100%;
}

.visual-break figcaption {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: #6a7c7d;
    font-style: italic;
}

/* Services Cards */
.services-preview {
    margin: 5rem 0;
}

.services-cards {
    margin-top: 3rem;
}

.service-card {
    background: #f8f7f5;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #3a7d5c;
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3a7d5c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    margin: 1.5rem 0 1rem;
}

.btn-service {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #3a7d5c;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #2a5d4c;
}

/* Inline CTAs */
.inline-cta {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #e8f4ef;
    text-align: center;
}

.cta-link {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Testimonials */
blockquote.testimonial {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background: #f0f8f4;
    border-left: 5px solid #3a7d5c;
    font-style: italic;
    font-size: 1.15rem;
}

blockquote.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #4a5c5d;
}

/* Form Section */
.form-section {
    background: #f8f7f5;
    padding: 3rem 2rem;
    margin: 5rem -1.5rem;
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    color: #1a2728;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #d0d8d9;
    background: #fff;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 3px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 3rem;
    background: #3a7d5c;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #2a5d4c;
}

/* Text Links */
.text-link {
    font-weight: 600;
    text-decoration: underline;
}

.closing-text {
    font-size: 1.25rem;
    margin: 3rem 0 1.5rem;
}

/* Footer */
.main-footer {
    background: #1a2728;
    color: #d0d8d9;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #d0d8d9;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #3a4546;
    text-align: center;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-hero {
    background: #e8f4ef;
    padding: 4rem 2rem;
    margin: -3rem -1.5rem 4rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.team-member {
    background: #f8f7f5;
    padding: 2rem;
}

.team-member h3 {
    margin-top: 0;
}

.team-member .role {
    color: #3a7d5c;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: block;
}

/* Services Page Styles */
.services-header {
    background: #e8f4ef;
    padding: 4rem 2rem;
    margin: -3rem -1.5rem 4rem;
}

.service-detail {
    background: #f8f7f5;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid #3a7d5c;
}

.service-detail h3 {
    margin-top: 0;
}

.service-detail .price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3a7d5c;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-detail ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail li {
    margin-bottom: 0.8rem;
}

/* Contact Page Styles */
.contact-header {
    background: #e8f4ef;
    padding: 4rem 2rem;
    margin: -3rem -1.5rem 4rem;
}

.contact-info {
    background: #f8f7f5;
    padding: 2rem;
    margin: 3rem 0;
}

.contact-info h3 {
    margin-top: 0;
}

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

.info-item {
    margin-bottom: 1.5rem;
}

.info-label {
    font-weight: 600;
    color: #1a2728;
    display: block;
    margin-bottom: 0.3rem;
}

/* Legal Pages */
.legal-content {
    max-width: 820px;
}

.legal-content h2 {
    margin-top: 2.5rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

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

/* Thanks Page */
.thanks-container {
    text-align: center;
    padding: 5rem 2rem;
}

.thanks-container h1 {
    color: #3a7d5c;
    margin-bottom: 1.5rem;
}

.thanks-container .checkmark {
    font-size: 4rem;
    color: #3a7d5c;
    margin-bottom: 2rem;
}

.thanks-info {
    background: #e8f4ef;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

    .visual-break {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .form-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .service-card,
    .service-detail {
        padding: 1.5rem;
    }
}