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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafaf8;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #d4a574;
}

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

.btn-cookie {
    padding: 10px 24px;
    background: #d4a574;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #c29563;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid #fff;
}

.btn-cookie.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #8b6f47;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

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

.nav a:hover {
    color: #8b6f47;
}

.hero-magazine {
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #3a3a3a;
}

.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 right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #fff;
    max-width: 700px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #f0f0f0;
    max-width: 600px;
    font-weight: 300;
}

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

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

.column-left {
    flex: 1.5;
}

.column-right {
    flex: 1;
}

.column-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.column-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.feature-box {
    background: #fff;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e8;
}

.feature-box h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #2c2c2c;
}

.feature-box p {
    font-size: 15px;
    color: #666;
    margin: 0 20px 20px;
}

.problem-section {
    padding: 80px 0;
    background: #f4f1ed;
}

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

.text-block {
    flex: 1;
}

.image-block {
    flex: 1;
}

.text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.text-block p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4a4a4a;
}

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

.benefits-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 16px;
    font-size: 16px;
    color: #333;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

.image-block img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #d4d4d4;
}

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

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 300px;
    background: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e0e0e0;
}

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

.service-card p {
    font-size: 15px;
    margin: 0 24px 20px;
    color: #666;
    line-height: 1.6;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #8b6f47;
    margin: 0 24px 20px;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #8b6f47;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #6f5838;
}

.trust-section {
    padding: 80px 0;
    background: #2c2c2c;
    color: #f0f0f0;
}

.asymmetric-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.testimonial-block {
    flex: 1 1 calc(50% - 25px);
    min-width: 300px;
}

.testimonial-block blockquote {
    border-left: 4px solid #d4a574;
    padding-left: 24px;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
}

.testimonial-block cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 14px;
    color: #d4a574;
}

.stats-block {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 15px;
    color: #ccc;
}

.form-section {
    padding: 100px 0;
    background: #f9f7f4;
}

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

.form-wrapper h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background: #fff;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #8b6f47;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #6f5838;
}

.disclaimer-section {
    padding: 40px 0;
    background: #f0ece7;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

.footer-column a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #8b6f47;
}

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

.thanks-content .selected-service {
    font-weight: 700;
    color: #2c2c2c;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #6f5838;
}

.about-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #8b6f47 0%, #6f5838 100%);
    color: #fff;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    text-align: center;
}

.about-hero p {
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

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

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

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #d8d8d8;
}

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

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #8b6f47;
}

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

.services-detail-section {
    padding: 80px 0;
}

.services-detail-section h1 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.service-detail-card {
    margin-bottom: 60px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e2e2e2;
}

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

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.service-detail-text .service-price {
    font-size: 24px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.service-detail-text ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail-text ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.service-detail-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

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

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.contact-info-section {
    max-width: 800px;
    margin: 0 auto 60px;
    background: #fff;
    padding: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8b6f47;
}

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #4a4a4a;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #555;
}

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

    .nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .magazine-layout,
    .split-content,
    .about-story-content,
    .service-detail-card {
        flex-direction: column;
    }

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

    .asymmetric-layout {
        flex-direction: column;
    }

    .stats-block {
        flex-direction: column;
        gap: 30px;
    }

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

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