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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #5a8a6c;
    --accent-color: #a67c52;
    --text-color: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-magazine {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-reject:hover {
    background-color: var(--bg-light);
}

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

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

.site-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    margin-left: auto;
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-light);
}

.hero-section {
    margin-bottom: 64px;
}

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

.hero-image-container 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-content {
    max-width: 900px;
    padding: 0 24px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

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

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

.column-main {
    flex: 2;
}

.column-side {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.content-block p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

.info-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

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

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 56px;
    color: var(--primary-color);
}

.section-title-left {
    font-size: 42px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.services-grid-three {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 16px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 16px;
}

.cta-center {
    text-align: center;
    margin-top: 48px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #234a30;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.split-content-reverse {
    display: flex;
    gap: 56px;
    align-items: center;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left img,
.content-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.content-right h2,
.content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.content-right p,
.content-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.testimonials-columns {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-block {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-block blockquote {
    font-style: normal;
}

.testimonial-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-block footer {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

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

.form-wrapper {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 17px;
    margin-bottom: 32px;
    color: var(--text-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-white);
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.info-columns {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

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

.info-col h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.info-col p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 56px 0 24px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-disclaimer {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.page-hero-simple {
    padding: 80px 0 40px;
    background-color: var(--bg-light);
}

.page-title {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

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

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

.service-layout {
    display: flex;
    gap: 56px;
    align-items: flex-start;
}

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

.service-visual {
    flex: 1;
    background-color: #e8e6e1;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.service-details p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-color);
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-color);
}

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

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

.cta-box {
    background-color: var(--primary-color);
    color: white;
    padding: 56px;
    border-radius: 8px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-box .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-box .btn-primary:hover {
    background-color: var(--bg-light);
}

.about-hero {
    padding: 80px 0 40px;
    background-color: var(--bg-light);
}

.about-intro {
    max-width: 900px;
}

.about-intro h1 {
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-color);
}

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

.story-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.fact-box {
    background-color: var(--primary-color);
    color: white;
    padding: 32px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

.fact-box h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.stat-item {
    margin-bottom: 24px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

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

.split-content {
    display: flex;
    gap: 56px;
    align-items: center;
}

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

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

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

.team-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 48px;
    color: var(--text-color);
    max-width: 800px;
}

.team-areas {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.team-area {
    flex: 1;
    min-width: 260px;
}

.team-area h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.team-area p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

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

.contact-info-section {
    padding: 80px 0;
}

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

.contact-main {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.contact-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.detail-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.info-box {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.info-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 12px;
}

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

.inquiry-box {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.inquiry-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.inquiry-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--text-color);
}

.inquiry-box a:not(.btn-primary) {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-color);
}

.thanks-info {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin: 48px auto;
    max-width: 600px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.steps-list {
    list-style: none;
    padding-left: 0;
}

.steps-list li {
    font-size: 16px;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-color);
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.additional-resources {
    padding: 80px 0;
}

.resources-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.resource-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text-color);
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.legal-content {
    font-size: 16px;
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.updated-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-color);
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-color);
}

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

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .ad-disclosure {
        margin-left: 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}