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

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

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

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

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

.main-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand h1 {
    font-size: 24px;
    color: #1a5f3f;
    font-weight: 600;
}

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

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

.main-nav a:hover {
    color: #1a5f3f;
}

.ad-notice {
    font-size: 13px;
    color: #666;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.hero-magazine {
    padding: 50px 0;
    background: #fff;
}

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

.hero-main {
    flex: 2;
    position: relative;
    background: #e8f3ec;
}

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

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

.hero-overlay h2 {
    font-size: 38px;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 18px;
    line-height: 1.6;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #f4f8f6;
    padding: 30px;
    border-left: 4px solid #1a5f3f;
}

.info-card.dark {
    background: #2c5440;
    color: #fff;
    border-left-color: #8bc34a;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
}

.content-columns {
    padding: 70px 0;
    background: #fff;
}

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

.col-main {
    flex: 2;
}

.col-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a5f3f;
}

.col-main p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.col-main img {
    width: 100%;
    height: auto;
    margin: 30px 0;
    object-fit: cover;
    background: #e8f3ec;
}

.col-side {
    flex: 1;
}

.sidebar-block {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e5e5e5;
}

.sidebar-block.accent {
    background: #fff8e1;
    border-color: #ffd54f;
}

.sidebar-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

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

.seasonal-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

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

.sidebar-block ol {
    padding-left: 20px;
}

.sidebar-block ol li {
    margin-bottom: 8px;
    font-size: 15px;
}

.services-preview {
    padding: 70px 0;
    background: #f5f5f5;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5f3f;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card.large {
    flex: 2;
    min-width: 600px;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #e8f3ec;
}

.service-card.large img {
    height: 380px;
}

.service-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.service-info p {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
    flex: 1;
}

.service-info .price {
    font-size: 22px;
    font-weight: 700;
    color: #1a5f3f;
    display: block;
    margin-bottom: 15px;
}

.cta-link {
    display: inline-block;
    background: #1a5f3f;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-link:hover {
    background: #145233;
}

.story-section {
    padding: 70px 0;
    background: #fff;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a5f3f;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-content img {
    width: 100%;
    height: auto;
    margin: 35px 0;
    object-fit: cover;
    background: #e8f3ec;
}

.testimonials-block {
    padding: 70px 0;
    background: #f4f8f6;
}

.testimonials-block h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5f3f;
}

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

blockquote {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-left: 4px solid #1a5f3f;
    font-style: italic;
}

blockquote p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

blockquote cite {
    font-style: normal;
    font-weight: 600;
    color: #1a5f3f;
    font-size: 14px;
}

.form-section {
    padding: 70px 0;
    background: #fff;
}

.form-wrapper {
    background: #f9f9f9;
    padding: 50px;
    border: 1px solid #e0e0e0;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a5f3f;
}

.form-wrapper > p {
    margin-bottom: 30px;
    color: #555;
    font-size: 16px;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f3f;
}

.btn-submit {
    padding: 15px 40px;
    background: #1a5f3f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #145233;
}

.main-footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 50px 0 30px;
}

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

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

.footer-col h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 25px;
}

.footer-bottom p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept {
    background: #1a5f3f;
    color: #fff;
}

.btn-accept:hover {
    background: #145233;
}

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

.btn-reject:hover {
    background: #555;
}

@media (max-width: 1024px) {
    .hero-grid {
        flex-direction: column;
    }

    .three-col-layout {
        flex-direction: column;
    }

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

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

.page-hero {
    background: #1a5f3f;
    color: #fff;
    padding: 80px 0;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.about-story {
    padding: 70px 0;
    background: #fff;
}

.team-section {
    padding: 70px 0;
    background: #f5f5f5;
}

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

.team-member {
    flex: 1;
    min-width: 300px;
    background: #fff;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: #e8f3ec;
}

.team-member h3 {
    font-size: 22px;
    padding: 25px 25px 10px;
    color: #1a5f3f;
}

.team-member p {
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.values-section {
    padding: 70px 0;
    background: #fff;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5f3f;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    padding: 30px;
    background: #f9f9f9;
    border-left: 4px solid #1a5f3f;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.services-detailed {
    padding: 50px 0;
    background: #fff;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a5f3f;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f3f;
    font-weight: bold;
}

.price-block {
    margin: 25px 0;
    padding: 20px;
    background: #f4f8f6;
    display: inline-block;
}

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

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #1a5f3f;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: #e8f3ec;
}

.contact-content {
    padding: 70px 0;
    background: #fff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a5f3f;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-map {
    flex: 1;
    background: #e8f3ec;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.thanks-content {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.thanks-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background: #f4f8f6;
    border: 2px solid #1a5f3f;
}

.thanks-box h1 {
    font-size: 42px;
    color: #1a5f3f;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.thanks-box .service-name {
    font-weight: 700;
    color: #1a5f3f;
}

.thanks-box .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #1a5f3f;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-box .btn-home:hover {
    background: #145233;
}

.legal-content {
    padding: 70px 0;
    background: #fff;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a5f3f;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

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

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

@media (max-width: 1024px) {
    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .header-layout {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

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

    .page-hero h1 {
        font-size: 36px;
    }

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

    .thanks-box {
        padding: 30px 20px;
    }

    .thanks-box h1 {
        font-size: 32px;
    }
}