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

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

.main-nav {
    background-color: #2d5016;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 0.8;
}

.ad-notice {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    margin-left: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2d5016;
    color: #fff;
}

.btn-accept:hover {
    background-color: #3d6820;
}

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

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

.magazine-layout {
    max-width: 100%;
}

.hero-magazine {
    background-color: #f8f5f0;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.hero-image-col {
    flex: 1;
    background-color: #e8dcc8;
}

.hero-image-col img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-text-col {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-col h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-col p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-primary {
    background-color: #2d5016;
    color: #fff;
}

.cta-primary:hover {
    background-color: #3d6820;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: #2d5016;
    border: 2px solid #2d5016;
}

.cta-secondary:hover {
    background-color: #2d5016;
    color: #fff;
}

.intro-columns {
    padding: 5rem 2rem;
    background-color: #fff;
}

.col-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.main-column {
    flex: 2;
}

.main-column h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.main-column h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.main-column p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.main-column img {
    width: 100%;
    margin: 2rem 0;
    border-radius: 4px;
}

.side-column {
    flex: 1;
}

.highlight-box,
.info-card {
    background-color: #f8f5f0;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #2d5016;
}

.highlight-box h3,
.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.highlight-box ul,
.info-card ul {
    list-style: none;
    padding-left: 0;
}

.highlight-box li,
.info-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.highlight-box li:before,
.info-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
}

.visual-card {
    margin-bottom: 2rem;
}

.visual-card img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

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

.quote-box {
    background-color: #2d5016;
    color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.quote-box p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
}

.services-magazine {
    padding: 5rem 2rem;
    background-color: #f8f5f0;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.services-grid-mag {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-mag {
    display: flex;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card-mag:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.service-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2d5016;
}

.select-service {
    padding: 0.8rem 1.8rem;
    background-color: #2d5016;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.select-service:hover {
    background-color: #3d6820;
    transform: translateY(-2px);
}

.testimonial-inline {
    padding: 4rem 2rem;
    background-color: #2d5016;
    color: #fff;
}

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

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.form-section,
.form-section-services {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.contact-form {
    background-color: #f8f5f0;
    padding: 3rem;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 600;
}

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

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

.form-group input[readonly] {
    background-color: #e8e8e8;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #2d5016;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #3d6820;
    transform: translateY(-2px);
}

.final-cta {
    padding: 5rem 2rem;
    background-color: #f8f5f0;
}

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

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.site-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-col p {
    line-height: 1.6;
    font-size: 0.95rem;
}

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

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

.footer-col a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #999;
    margin-bottom: 1.5rem;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.page-hero-about {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #2d5016;
}

.page-hero-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-overlay-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-overlay-content p {
    font-size: 1.3rem;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #fff;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f5f0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.value-item p {
    color: #4a4a4a;
    line-height: 1.6;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: #2d5016;
    color: #fff;
}

.cta-about .cta-content-centered h2,
.cta-about .cta-content-centered p {
    color: #fff;
}

.page-hero-services {
    padding: 5rem 2rem;
    background-color: #2d5016;
    color: #fff;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.3rem;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e8dcc8;
}

.service-detail-image img {
    width: 100%;
    border-radius: 4px;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.1rem;
    color: #666;
}

.price-value {
    font-size: 1.6rem;
    font-weight: bold;
    color: #2d5016;
}

.form-section-services {
    background-color: #f8f5f0;
}

.contact-header {
    padding: 5rem 2rem 3rem;
    text-align: center;
    background-color: #f8f5f0;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.contact-info-section {
    padding: 3rem 2rem 5rem;
    background-color: #fff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d5016;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d5016;
}

.contact-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.no-link {
    color: #4a4a4a;
    pointer-events: none;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8f5f0;
    border-left: 4px solid #2d5016;
    margin-top: 2rem;
}

.contact-note a {
    color: #2d5016;
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.contact-cta-box {
    background-color: #2d5016;
    color: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
}

.contact-cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-cta-box p {
    margin-bottom: 1.5rem;
}

.location-note {
    padding: 4rem 2rem;
    background-color: #f8f5f0;
}

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

.location-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.location-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f5f0;
    border-radius: 4px;
}

.service-name {
    font-size: 1.1rem;
    color: #2d5016;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
    background-color: #f8f5f0;
    padding: 2.5rem;
    border-radius: 4px;
}

.thanks-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
    text-align: center;
}

.thanks-info ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-info li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a4a4a;
}

.thanks-info li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
}

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.thanks-contact p {
    color: #666;
}

.legal-page {
    background-color: #fff;
    padding: 3rem 2rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-updated {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d5016;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.legal-section a {
    color: #2d5016;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.cookies-table th {
    background-color: #f8f5f0;
    font-weight: bold;
    color: #2d5016;
}

.cookies-table td {
    color: #4a4a4a;
}

@media (max-width: 1024px) {
    .hero-split,
    .col-layout,
    .contact-layout,
    .service-card-mag,
    .service-detail-item {
        flex-direction: column;
    }

    .service-card-mag:nth-child(even) {
        flex-direction: column;
    }

    .hero-text-col h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .ad-notice {
        margin-left: 0;
        margin-top: 0.5rem;
        flex-basis: 100%;
        text-align: center;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        justify-content: space-around;
        margin-top: 1rem;
    }

    .hero-text-col h1,
    .hero-overlay-content h1,
    .contact-header h1,
    .thanks-content h1 {
        font-size: 1.8rem;
    }

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

    .values-grid {
        flex-direction: column;
    }

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