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

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

.ad-notice {
    background-color: #f4f1e8;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0ddd0;
}

.main-nav {
    background-color: #fff;
    border-bottom: 2px solid #c9a961;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #8b6f3d;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 16px;
    transition: color 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-menu a:hover {
    color: #c9a961;
}

.hero-magazine {
    background-color: #fff;
    padding: 80px 40px;
}

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

.hero-text-column {
    flex: 1;
}

.hero-image-column {
    flex: 1;
}

.hero-image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background-color: #c9a961;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    border-radius: 3px;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-primary:hover {
    background-color: #b89850;
}

.intro-section {
    padding: 100px 40px;
    background-color: #f9f7f3;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.main-column {
    flex: 2;
}

.side-column {
    flex: 1;
}

h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.info-card {
    background-color: #fff;
    padding: 32px;
    border-left: 4px solid #c9a961;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #8b6f3d;
}

.info-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.services-preview {
    padding: 100px 40px;
    background-color: #fff;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro {
    font-size: 19px;
    color: #666;
    margin-top: 16px;
}

.services-magazine-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card-mag {
    flex: 0 0 calc(50% - 20px);
    background-color: #fafaf8;
    border: 1px solid #e8e6df;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card-mag:hover {
    transform: translateY(-4px);
}

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

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

.service-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.service-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    color: #8b6f3d;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-select-btn {
    background-color: #8b6f3d;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-select-btn:hover {
    background-color: #6e5830;
}

.contact-form-section {
    padding: 100px 40px;
    background-color: #f4f1e8;
}

.form-container-magazine {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro-text {
    margin-bottom: 48px;
}

.form-intro-text h2 {
    margin-bottom: 16px;
}

.form-intro-text p {
    font-size: 18px;
    color: #666;
}

.contact-form {
    background-color: #fff;
    padding: 48px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0cec4;
    border-radius: 3px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #fafaf8;
}

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

.btn-submit {
    background-color: #c9a961;
    color: #fff;
    border: none;
    padding: 16px 48px;
    font-size: 17px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.trust-section {
    padding: 100px 40px;
    background-color: #fff;
}

.magazine-layout-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.magazine-layout-reverse .side-column {
    flex: 1;
}

.magazine-layout-reverse .side-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: #e8e6df;
}

.magazine-layout-reverse .main-column {
    flex: 2;
}

.highlight-box {
    background-color: #fef9ef;
    border-left: 4px solid #d4a574;
    padding: 24px;
    margin-top: 32px;
}

.highlight-box p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
}

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

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 24px 40px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #666;
}

.btn-reject:hover {
    background-color: #3a3a3a;
}

.thanks-message {
    text-align: center;
    padding: 100px 40px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-message h1 {
    color: #c9a961;
    margin-bottom: 24px;
}

.thanks-message p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin-bottom: 32px;
}

.legal-page {
    padding: 80px 40px;
    background-color: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2c2c2c;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

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

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 24px;
}

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

.contact-page-section {
    padding: 100px 40px;
    background-color: #fff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 32px;
}

.contact-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.info-block h3 {
    font-size: 20px;
    color: #8b6f3d;
    margin-bottom: 12px;
}

.info-block p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.about-hero {
    padding: 100px 40px;
    background-color: #f9f7f3;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 48px;
    margin-bottom: 32px;
    color: #2c2c2c;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a4a4a;
    line-height: 1.8;
}

.about-image-section {
    padding: 80px 40px;
    background-color: #fff;
}

.about-image-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: #e8e6df;
}

.services-list-page {
    padding: 100px 40px;
    background-color: #fff;
}

.services-page-header {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-page-header h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.services-page-header p {
    font-size: 20px;
    color: #666;
}

@media (max-width: 1024px) {
    .hero-content-split,
    .magazine-layout,
    .magazine-layout-reverse,
    .contact-layout,
    .services-magazine-grid {
        flex-direction: column;
    }

    .service-card-mag {
        flex: 0 0 100%;
    }

    .nav-menu {
        gap: 20px;
    }

    h1 {
        font-size: 36px;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero-magazine,
    .intro-section,
    .services-preview,
    .contact-form-section,
    .trust-section {
        padding: 60px 20px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 32px 24px;
    }

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