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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #8b7355;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 25px 20px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: #234d24;
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 5px 12px;
    background-color: var(--bg-light);
    border-radius: 3px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary-color);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    display: flex;
    align-items: flex-end;
}

.hero-text {
    padding: 60px 0;
    color: var(--bg-white);
}

.hero-text h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.3rem;
    max-width: 600px;
}

.intro-section {
    padding: 70px 0;
}

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

.main-column {
    flex: 2;
}

.side-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.inline-image {
    margin: 35px 0;
    background-color: var(--bg-light);
}

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

.quote-block {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--secondary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 30px;
    margin: 40px 0;
    line-height: 1.6;
}

.info-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-secondary:hover {
    background-color: #234d24;
    color: var(--bg-white);
}

.fact-box {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 25px;
}

.fact-box h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.fact-box p {
    font-size: 0.95rem;
    margin: 0;
}

.heritage-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.two-column-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-block {
    flex: 1;
}

.image-block {
    flex: 1;
    background-color: var(--secondary-color);
}

.image-block img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

.centered-heading {
    text-align: center;
    margin-bottom: 50px;
}

.three-column-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.mech-card {
    flex: 1;
    min-width: 280px;
}

.mech-card img {
    width: 100%;
    height: 280px;
    background-color: var(--bg-light);
    margin-bottom: 20px;
}

.mech-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.services-preview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.service-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #234d24;
}

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

.form-wrapper {
    background-color: var(--bg-light);
    padding: 50px;
    border-left: 6px solid var(--primary-color);
}

.form-wrapper h2 {
    margin-bottom: 15px;
}

.form-wrapper > p {
    margin-bottom: 30px;
    color: var(--text-medium);
}

.inquiry-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.9rem;
    color: var(--bg-light);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--bg-light);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-header {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

.page-header h1 {
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
}

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

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

.about-main {
    flex: 2.5;
}

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

.about-image-section {
    margin: 40px 0;
    background-color: var(--bg-light);
}

.about-image-section img {
    width: 100%;
}

.quote-about {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    padding: 30px;
    background-color: var(--bg-light);
    margin: 35px 0;
    border-left: 4px solid var(--accent-color);
}

.team-info-box {
    background-color: var(--bg-light);
    padding: 30px;
}

.team-info-box h4 {
    margin-bottom: 20px;
}

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

.expertise-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.expertise-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.values-box {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 30px;
}

.values-box h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.values-box p {
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.values-box strong {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    margin-bottom: 5px;
}

.approach-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.approach-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.approach-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 35px;
    border-top: 4px solid var(--primary-color);
}

.approach-number {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.approach-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

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

.cta-content {
    text-align: center;
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-left: 6px solid var(--primary-color);
}

.cta-content h2 {
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #234d24;
    color: var(--bg-white);
}

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

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

.service-full-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-full.reverse .service-full-content {
    flex-direction: row-reverse;
}

.service-full-text {
    flex: 1.2;
}

.service-full-image {
    flex: 1;
    background-color: var(--bg-light);
}

.service-full-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.service-full-text h2 {
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-full-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 30px 0 25px;
}

.price-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.price-value {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.services-cta {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.cta-box h2 {
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.contact-section {
    padding: 70px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.5;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.email-display {
    font-family: 'Courier New', monospace;
    color: var(--text-dark);
}

.contact-item .note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    margin-top: 30px;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    font-size: 0.9rem;
    margin: 0;
}

.contact-form-wrapper h2 {
    margin-bottom: 12px;
}

.contact-form-wrapper > p {
    margin-bottom: 30px;
    color: var(--text-medium);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
}

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

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

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

.thanks-content h1 {
    margin-bottom: 30px;
}

.thanks-message {
    margin-bottom: 50px;
}

.selected-service-info {
    background-color: var(--bg-light);
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-color);
}

.selected-service-info p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    background-color: var(--bg-light);
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: 30px;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.thanks-note {
    background-color: var(--bg-light);
    padding: 25px;
    border-left: 4px solid var(--accent-color);
}

.thanks-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

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

.legal-page h1 {
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 12px;
}

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

.legal-page ul li {
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .magazine-layout,
    .about-layout,
    .contact-layout {
        flex-direction: column;
    }

    .two-column-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-full-content,
    .service-full.reverse .service-full-content {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .hero-image {
        height: 400px;
    }

    .hero-text {
        padding: 40px 0;
    }

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

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

    .nav {
        gap: 15px;
        font-size: 0.9rem;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .form-wrapper,
    .contact-form {
        padding: 30px 20px;
    }

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

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

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

    .service-item {
        min-width: 100%;
    }

    .btn-primary,
    .btn-secondary,
    .btn-submit {
        width: 100%;
        text-align: center;
    }
}