* {
    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;
}

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

.ad-disclosure {
    background-color: #f4f0e8;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0dbd0;
}

.header-magazine {
    background-color: #fff;
    border-bottom: 3px solid #2d5a3d;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-section {
    flex: 1;
    min-width: 200px;
}

.brand-name {
    font-size: 32px;
    font-weight: bold;
    color: #2d5a3d;
    margin-bottom: 5px;
}

.brand-tagline {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.nav-magazine {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-magazine a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-magazine a:hover,
.nav-magazine a.active {
    color: #2d5a3d;
}

.nav-magazine a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2d5a3d;
}

.hero-magazine {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4c5b0;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 60px 40px 40px;
    color: #fff;
}

.hero-overlay h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 15px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
    opacity: 0.95;
}

.intro-columns {
    padding: 80px 0;
    background-color: #faf8f5;
}

.column-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.col-main {
    flex: 2;
    min-width: 300px;
}

.col-sidebar {
    flex: 1;
    min-width: 280px;
}

.col-main h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2d5a3d;
    line-height: 1.3;
}

.col-main p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.feature-box {
    background-color: #fff;
    padding: 25px;
    border-left: 4px solid #2d5a3d;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.feature-box img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    background-color: #e8e4dc;
}

.feature-box h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.feature-box p {
    font-size: 16px;
    color: #555;
}

.services-preview {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d5a3d;
}

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #fff;
    border: 1px solid #e0dbd0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #d4c5b0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #2d5a3d;
    margin: 20px 0;
}

.btn-select-service {
    background-color: #2d5a3d;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.btn-select-service:hover {
    background-color: #1e3d29;
}

.story-section {
    padding: 80px 0;
    background-color: #f4f0e8;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2d5a3d;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background-color: #d4c5b0;
}

.form-section {
    padding: 80px 0;
    background-color: #2d5a3d;
    color: #fff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h3 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    opacity: 0.9;
}

.inquiry-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

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

.form-group {
    flex: 1;
    min-width: 200px;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    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: #2d5a3d;
}

.btn-submit {
    background-color: #2d5a3d;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 80px 0;
}

.trust-section h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d5a3d;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 48px;
    font-weight: bold;
    color: #2d5a3d;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 18px;
    color: #4a4a4a;
}

.footer-magazine {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    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;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: #1e3d29;
}

.btn-cookie-reject {
    background-color: #555;
    color: #fff;
}

.btn-cookie-reject:hover {
    background-color: #333;
}

.page-hero {
    background-color: #f4f0e8;
    padding: 80px 0;
    text-align: center;
    border-bottom: 3px solid #2d5a3d;
}

.page-hero h2 {
    font-size: 42px;
    color: #2d5a3d;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #555;
}

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

.about-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.about-main {
    flex: 2;
    min-width: 300px;
}

.about-main h3 {
    font-size: 32px;
    color: #2d5a3d;
    margin-bottom: 25px;
    margin-top: 40px;
}

.about-main h3:first-child {
    margin-top: 0;
}

.about-main p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.about-main img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #d4c5b0;
}

.about-sidebar {
    flex: 1;
    min-width: 280px;
}

.sidebar-box {
    background-color: #faf8f5;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #2d5a3d;
}

.sidebar-box h4 {
    font-size: 22px;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.sidebar-box img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    background-color: #d4c5b0;
}

.sidebar-box p {
    font-size: 16px;
    line-height: 1.6;
}

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

.values-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0dbd0;
    font-size: 16px;
}

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

.vision-section {
    padding: 80px 0;
    background-color: #2d5a3d;
    color: #fff;
    text-align: center;
}

.vision-section h3 {
    font-size: 36px;
    margin-bottom: 25px;
}

.vision-section p {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    background-color: #d4c5b0;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h3 {
    font-size: 32px;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.service-intro {
    font-size: 18px;
    margin-bottom: 25px;
    font-style: italic;
    color: #555;
}

.service-detail-content h4 {
    font-size: 22px;
    color: #2d5a3d;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-detail-content li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.service-pricing {
    background-color: #f4f0e8;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #2d5a3d;
}

.price-label {
    font-size: 16px;
    color: #666;
    margin-right: 10px;
}

.price-value {
    font-size: 32px;
    font-weight: bold;
    color: #2d5a3d;
}

.price-note {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.contact-info h3 {
    font-size: 32px;
    color: #2d5a3d;
    margin-bottom: 40px;
}

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

.contact-block h4 {
    font-size: 22px;
    color: #2d5a3d;
    margin-bottom: 15px;
}

.contact-block p {
    font-size: 18px;
    line-height: 1.7;
}

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

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid #e0dbd0;
}

.hours-table td:first-child {
    font-weight: 500;
    padding-right: 20px;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

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

.contact-image img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    background-color: #d4c5b0;
}

.location-note {
    background-color: #f4f0e8;
    padding: 25px;
    border-left: 4px solid #2d5a3d;
}

.location-note p {
    font-size: 16px;
    line-height: 1.6;
}

.visit-info {
    padding: 80px 0;
    background-color: #faf8f5;
}

.visit-info h3 {
    font-size: 32px;
    color: #2d5a3d;
    margin-bottom: 25px;
    text-align: center;
}

.visit-info > p {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.visit-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.visit-feature {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 30px;
    border-top: 3px solid #2d5a3d;
}

.visit-feature h4 {
    font-size: 20px;
    color: #2d5a3d;
    margin-bottom: 15px;
}

.visit-feature p {
    font-size: 16px;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h3 {
    font-size: 32px;
    color: #2d5a3d;
    margin-bottom: 50px;
    text-align: center;
}

.faq-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0dbd0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 22px;
    color: #2d5a3d;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 18px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    min-height: 600px;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h2 {
    font-size: 42px;
    color: #2d5a3d;
    margin-bottom: 30px;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #f4f0e8;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #2d5a3d;
}

.service-confirmation p {
    font-size: 18px;
    margin: 0;
}

.thanks-message h3 {
    font-size: 28px;
    color: #2d5a3d;
    margin: 50px 0 30px;
}

.next-steps {
    margin: 40px 0;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
    text-align: left;
}

.step-number {
    background-color: #2d5a3d;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    color: #2d5a3d;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    margin: 0;
}

.thanks-info {
    background-color: #faf8f5;
    padding: 40px;
    margin: 50px 0;
    border-radius: 2px;
}

.thanks-info h4 {
    font-size: 24px;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.thanks-info p {
    margin-bottom: 25px;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.thanks-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2d5a3d;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: #1e3d29;
}

.thanks-contact {
    margin-top: 50px;
}

.thanks-contact p {
    font-size: 16px;
}

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

.legal-page h2 {
    font-size: 42px;
    color: #2d5a3d;
    margin-bottom: 40px;
    text-align: center;
}

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

.legal-content h3 {
    font-size: 28px;
    color: #2d5a3d;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content h4 {
    font-size: 22px;
    color: #2d5a3d;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2d5a3d;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background-color: #f4f0e8;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
    color: #2d5a3d;
    border-bottom: 2px solid #2d5a3d;
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid #e0dbd0;
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

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

    .nav-magazine {
        margin-top: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .hero-overlay h2 {
        font-size: 28px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .column-layout,
    .story-layout,
    .service-detail-layout,
    .contact-layout,
    .about-layout {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

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

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

    .step-content {
        text-align: left;
    }

    .thanks-links {
        width: 100%;
    }

    .thanks-link {
        width: 100%;
    }
}