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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f4e6;
    color: #6b5d3f;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e0d8c0;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
}

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

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #e8e4d8;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    font-weight: 300;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.magazine-intro {
    padding: 80px 0;
}

.intro-columns {
    display: flex;
    gap: 60px;
}

.intro-main {
    flex: 2;
}

.intro-main h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c5f2d;
    line-height: 1.3;
}

.intro-main p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.intro-sidebar {
    flex: 1;
}

.highlight-box {
    background-color: #f5f3ed;
    padding: 35px;
    border-left: 4px solid #2c5f2d;
}

.highlight-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.highlight-box p {
    margin-bottom: 20px;
    color: #5a5a5a;
}

.text-link {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.7;
}

.featured-services-magazine {
    padding: 80px 0;
    background-color: #fafaf8;
}

.section-title-magazine {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c2c2c;
    text-align: center;
}

.magazine-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-large {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

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

.service-card-large .service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-large h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.service-card-large p {
    margin-bottom: 25px;
    color: #5a5a5a;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.service-card-medium {
    background-color: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-card-medium .service-image {
    height: 250px;
    background-color: #e8e4d8;
}

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

.service-card-medium .service-content {
    padding: 35px;
}

.service-card-medium h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.service-card-medium p {
    margin-bottom: 20px;
    color: #5a5a5a;
}

.cta-button {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.cta-button:hover {
    background-color: #234d24;
}

.cta-button-secondary {
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
}

.cta-button-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.cultural-events {
    padding: 80px 0;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.split-content p {
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    background-color: #e8e4d8;
}

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

.price-display {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
}

.price-label {
    font-size: 1rem;
    color: #6a6a6a;
    font-weight: 500;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.archive-documentation {
    padding: 80px 0;
    background-color: #f5f3ed;
}

.centered-content {
    text-align: center;
}

.centered-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.centered-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-features {
    display: flex;
    gap: 40px;
    margin: 50px 0;
    text-align: left;
}

.feature-item {
    flex: 1;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.feature-item p {
    font-size: 0.95rem;
    color: #5a5a5a;
}

.price-centered {
    margin-top: 40px;
}

.price-large {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 25px;
}

.heritage-preservation {
    padding: 80px 0;
}

.preservation-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.preservation-image {
    flex: 1;
    background-color: #e8e4d8;
}

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

.preservation-content {
    flex: 1;
}

.preservation-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.preservation-content p {
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.heritage-benefits {
    list-style: none;
    margin: 30px 0;
}

.heritage-benefits li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #4a4a4a;
}

.heritage-benefits li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.price-heritage {
    margin: 30px 0;
    font-size: 1.2rem;
    color: #2c5f2d;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #fafaf8;
}

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

.form-header h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.form-header p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0cfc4;
    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: #2c5f2d;
}

.submit-button {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    border-radius: 2px;
}

.submit-button:hover {
    background-color: #234d24;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 0 20px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 0;
    border-top: 1px solid #4a4a4a;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom .disclaimer {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #b0b0b0;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: #8bc98d;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s ease;
    border-radius: 2px;
}

.cookie-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #6a6a6a;
    color: #ffffff;
}

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

.page-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
}

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

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.story-text p {
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-color: #e8e4d8;
}

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

.team-philosophy {
    padding: 80px 0;
    background-color: #f5f3ed;
}

.team-philosophy h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #2c5f2d;
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #3a3a3a;
    font-weight: 500;
    line-height: 1.7;
}

.team-philosophy p {
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.expertise-areas {
    padding: 80px 0;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #fafaf8;
    padding: 35px;
    border-left: 3px solid #2c5f2d;
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.expertise-card p {
    color: #5a5a5a;
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
    background-color: #fafaf8;
}

.value-item {
    margin-bottom: 35px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.value-item p {
    color: #5a5a5a;
    line-height: 1.7;
}

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

.cta-box-centered {
    text-align: center;
    background-color: #f5f3ed;
    padding: 60px 40px;
    border-radius: 2px;
}

.cta-box-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.cta-box-centered p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #5a5a5a;
}

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

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}

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

.service-detail-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.service-intro {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-detail-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background-color: #f5f3ed;
    padding: 25px 35px;
    border-radius: 2px;
}

.service-detail-price .price-label {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-bottom: 5px;
}

.service-detail-price .price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
}

.service-detail-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-detail-content img {
    flex: 1;
    max-width: 50%;
    height: auto;
    object-fit: cover;
    background-color: #e8e4d8;
}

.service-features-list {
    flex: 1;
}

.service-features-list h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c5f2d;
}

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

.service-features-list ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-features-list ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.services-cta {
    padding: 80px 0;
    background-color: #f5f3ed;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.contact-info p {
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.info-block p {
    color: #5a5a5a;
    line-height: 1.7;
}

.info-block .note {
    font-style: italic;
    color: #7a7a7a;
    font-size: 0.95rem;
}

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

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

.location-section {
    padding: 80px 0;
    background-color: #fafaf8;
}

.location-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c5f2d;
    text-align: center;
}

.location-section p {
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c5f2d;
}

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

.service-confirmation {
    background-color: #f5f3ed;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #2c5f2d;
    font-size: 1.1rem;
    color: #2c5f2d;
}

.thanks-note {
    font-size: 1rem;
    color: #6a6a6a;
    margin-bottom: 40px;
}

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

.next-steps {
    padding: 80px 0;
    background-color: #fafaf8;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c5f2d;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.step-item p {
    color: #5a5a5a;
    line-height: 1.6;
}

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

.legal-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.legal-page p {
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-page ul {
    margin: 15px 0 15px 25px;
    color: #4a4a4a;
}

.legal-page ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #7a7a7a;
}

.no-link {
    color: #5a5a5a;
    text-decoration: none;
    cursor: default;
}

@media (max-width: 1024px) {
    .header-content {
        padding: 20px 30px;
    }

    .container-wide,
    .container-narrow,
    .container-split {
        padding: 0 30px;
    }

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

    .intro-columns,
    .story-layout,
    .preservation-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-card-large {
        flex-direction: column;
    }

    .service-features {
        flex-direction: column;
        gap: 25px;
    }

    .expertise-card {
        flex: 1 1 calc(50% - 15px);
    }

    .service-detail-content {
        flex-direction: column;
    }

    .service-detail-content img {
        max-width: 100%;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-title-magazine {
        font-size: 2rem;
    }

    .container-split {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: column;
    }

    .service-detail-price {
        align-items: flex-start;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }

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

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

    .footer-column {
        flex: 1 1 100%;
    }
}