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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #faf8f5;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5f4f;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie.accept {
    background-color: #8fbc8f;
    color: #1a1a1a;
}

.btn-cookie.accept:hover {
    background-color: #7aa87a;
}

.btn-cookie.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0dcd5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5f4f;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.main-nav a {
    font-size: 0.95rem;
    color: #444;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2c5f4f;
}

/* Hero Magazine Style */
.hero-magazine {
    padding: 80px 40px;
    background-color: #ffffff;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.hero-image-block {
    flex: 1;
    background-color: #f5f2ed;
}

.hero-image-block img {
    width: 100%;
    height: 600px;
}

/* Content Magazine Layout */
.content-magazine {
    padding: 100px 40px;
    background-color: #faf8f5;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.main-column {
    flex: 2;
}

.sidebar-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.wide-column {
    width: 100%;
}

.editorial-block {
    margin-bottom: 60px;
}

.editorial-block h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 400;
}

.editorial-block p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

.image-feature {
    margin: 60px 0;
    background-color: #f5f2ed;
}

.image-feature img {
    width: 100%;
    height: 500px;
}

.image-caption {
    padding: 20px;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

.quote-block-large {
    margin: 60px 0;
    padding: 40px;
    background-color: #2c5f4f;
    color: #ffffff;
}

.quote-block-large p {
    font-size: 1.8rem;
    line-height: 1.5;
    font-style: italic;
    text-align: center;
}

/* Sidebar Elements */
.info-card {
    background-color: #ffffff;
    padding: 35px;
    border: 1px solid #e0dcd5;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #2c5f4f;
}

.service-quick-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-quick-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0ebe3;
    font-size: 0.95rem;
    color: #555;
}

.service-quick-list li:last-child {
    border-bottom: none;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-size: 1.5rem;
}

.btn-inline {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c5f4f;
    color: #ffffff;
    border-radius: 3px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-inline:hover {
    background-color: #1f4437;
}

.visual-accent {
    background-color: #f5f2ed;
}

.visual-accent img {
    width: 100%;
    height: 450px;
}

.testimonial-card {
    background-color: #f5f2ed;
    padding: 30px;
}

.quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    font-style: italic;
}

.author {
    font-size: 0.9rem;
    color: #666;
}

.cta-card {
    background-color: #2c5f4f;
    color: #ffffff;
    padding: 35px;
}

.cta-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.cta-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ffffff;
    color: #2c5f4f;
    border-radius: 3px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

/* Services Preview */
.services-preview {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #666;
}

.services-grid-magazine {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.service-card {
    flex: 1;
    background-color: #faf8f5;
    overflow: hidden;
}

.service-image {
    background-color: #f5f2ed;
}

.service-image img {
    width: 100%;
    height: 280px;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 1.5rem;
    color: #2c5f4f;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.price {
    font-size: 1.3rem;
    color: #2c5f4f;
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 100px 40px;
    background-color: #faf8f5;
}

.two-column-magazine {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.column-image {
    flex: 1;
    background-color: #f5f2ed;
}

.column-image img {
    width: 100%;
    height: 700px;
}

.column-text {
    flex: 1;
}

.column-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 400;
}

.process-step {
    margin-bottom: 35px;
}

.process-step h4 {
    font-size: 1.2rem;
    color: #2c5f4f;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f4f;
    color: #ffffff;
    border-radius: 3px;
    font-size: 1rem;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1f4437;
}

/* Form Section */
.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-container-magazine {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 400;
}

.form-intro p {
    font-size: 1.05rem;
    color: #666;
}

.contact-form {
    background-color: #faf8f5;
    padding: 50px;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0cbc0;
    background-color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1f4437;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #cccccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.disclaimer {
    color: #999;
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 15px auto 0;
}

/* Page Hero Small */
.page-hero-small {
    padding: 80px 40px 60px;
    background-color: #2c5f4f;
    color: #ffffff;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.subtitle {
    font-size: 1.2rem;
    color: #d0e8df;
}

/* About Intro */
.about-intro {
    padding: 60px 40px;
    background-color: #ffffff;
}

/* About Content */
.about-content {
    padding: 80px 40px;
    background-color: #faf8f5;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

/* Team Values */
.team-values {
    padding: 100px 40px;
    background-color: #f5f2ed;
}

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

.centered-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 400;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 40px;
    background-color: #faf8f5;
}

.service-full-block {
    max-width: 1400px;
    margin: 0 auto 80px;
    background-color: #ffffff;
}

.service-full-block.alt-layout {
    background-color: #f5f2ed;
}

.service-layout-split {
    display: flex;
    gap: 0;
}

.service-layout-split.reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    background-color: #f5f2ed;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.service-details {
    flex: 1;
    padding: 60px;
}

.service-details h2 {
    font-size: 2.2rem;
    color: #2c5f4f;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 35px;
}

.service-features h4 {
    font-size: 1.1rem;
    color: #2c5f4f;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
    margin-bottom: 35px;
}

.service-features li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-size: 1.5rem;
}

.pricing-box {
    background-color: #faf8f5;
    padding: 25px;
    border-left: 4px solid #2c5f4f;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    font-size: 1.8rem;
    color: #2c5f4f;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

/* Service CTA Section */
.service-cta-section {
    padding: 100px 40px;
    background-color: #2c5f4f;
    color: #ffffff;
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-content-centered p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: #d0e8df;
}

.btn-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ffffff;
    color: #2c5f4f;
    border-radius: 3px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background-color: #f0f0f0;
}

/* Contact Page */
.contact-page-content {
    padding: 80px 40px;
    background-color: #faf8f5;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 400;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.email-display {
    color: #2c5f4f;
    font-weight: 500;
}

.note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

.contact-image-block {
    flex: 1;
    background-color: #f5f2ed;
}

.contact-image-block img {
    width: 100%;
    height: 600px;
}

/* Location Info */
.location-info {
    padding: 80px 40px;
    background-color: #ffffff;
}

/* Directions Section */
.directions-section {
    padding: 80px 40px;
    background-color: #f5f2ed;
}

.two-column-info {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.direction-block {
    flex: 1;
}

.direction-block h3 {
    font-size: 1.5rem;
    color: #2c5f4f;
    margin-bottom: 20px;
}

.direction-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 40px;
    background-color: #faf8f5;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #2c5f4f;
    margin-bottom: 25px;
    font-weight: 400;
}

.thanks-message {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-detail {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Next Steps */
.next-steps {
    padding: 80px 40px;
    background-color: #ffffff;
}

.centered-content-small {
    max-width: 900px;
    margin: 0 auto;
}

.centered-content-small h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 400;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c5f4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Legal Pages */
.legal-page {
    padding: 80px 40px;
    background-color: #faf8f5;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 15px;
    font-weight: 400;
}

.legal-intro {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.6rem;
    color: #2c5f4f;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.legal-container h3 {
    font-size: 1.2rem;
    color: #2c5f4f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

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

.legal-container li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.legal-container a {
    color: #2c5f4f;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1f4437;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .magazine-layout,
    .two-column-magazine,
    .services-grid-magazine,
    .contact-layout,
    .two-column-info {
        flex-direction: column;
    }

    .service-layout-split,
    .service-layout-split.reverse {
        flex-direction: column;
    }

    .hero-text-block {
        padding-right: 0;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .column-image img,
    .hero-image-block img {
        height: 400px;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .ad-disclosure {
        order: -1;
    }

    .main-nav ul {
        gap: 20px;
    }

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

    .section-header-centered h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px;
    }

    .legal-container {
        padding: 40px 30px;
    }
}