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

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

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

.ad-disclosure {
    background: #f4f1ed;
    padding: 8px 0;
    border-bottom: 1px solid #d4cfc7;
    font-size: 13px;
    color: #666;
    text-align: center;
}

header {
    background: #fff;
    border-bottom: 2px solid #8b7355;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #8b7355;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

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

.nav-links a:hover {
    color: #8b7355;
}

.hero-section {
    position: relative;
    height: 520px;
    background-color: #d4cfc7;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 44, 44, 0.3), rgba(44, 44, 44, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 740px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.6;
    opacity: 0.95;
}

.magazine-layout {
    display: flex;
    gap: 40px;
    margin: 60px auto;
}

.main-column {
    flex: 2;
}

.side-column {
    flex: 1;
}

.section-title {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 400;
    border-left: 4px solid #8b7355;
    padding-left: 16px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #3a3a3a;
}

.content-block {
    background: #fff;
    padding: 36px;
    margin-bottom: 32px;
    border: 1px solid #e8e8e8;
}

.content-block h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #8b7355;
    font-weight: 400;
}

.content-block p {
    margin-bottom: 14px;
}

.feature-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    margin: 24px 0;
    background-color: #d4cfc7;
}

.sidebar-card {
    background: #fff;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid #e8e8e8;
}

.sidebar-card h4 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c2c2c;
    font-weight: 500;
}

.sidebar-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.sidebar-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 16px;
    background-color: #d4cfc7;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 40px 0;
}

.service-card {
    flex: 1 1 calc(50% - 14px);
    background: #fff;
    padding: 32px;
    border: 1px solid #e8e8e8;
    min-width: 280px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #8b7355;
    font-weight: 500;
}

.service-card p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    color: #2c2c2c;
    margin: 16px 0;
    font-weight: 500;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 16px;
    background-color: #d4cfc7;
}

.cta-button {
    display: inline-block;
    background: #8b7355;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background: #6d5a43;
}

.full-width-section {
    background: #f4f1ed;
    padding: 60px 0;
    margin: 48px 0;
}

.two-column {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.column {
    flex: 1;
}

.column img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    background-color: #d4cfc7;
}

.form-section {
    background: #fff;
    padding: 48px;
    margin: 48px 0;
    border: 1px solid #e8e8e8;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: #8b7355;
    color: #fff;
    padding: 14px 40px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #6d5a43;
}

.contact-info {
    background: #fff;
    padding: 36px;
    border: 1px solid #e8e8e8;
    margin-bottom: 24px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #8b7355;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.contact-info strong {
    color: #2c2c2c;
}

footer {
    background: #2c2c2c;
    color: #d4cfc7;
    padding: 48px 0 24px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

.disclaimer {
    background: #f9f7f4;
    padding: 24px;
    margin: 32px 0;
    border-left: 3px solid #8b7355;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 24px;
    display: none;
    z-index: 2000;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.cookie-accept {
    background: #8b7355;
    color: #fff;
}

.cookie-accept:hover {
    background: #6d5a43;
}

.cookie-reject {
    background: #fff;
    color: #2c2c2c;
}

.cookie-reject:hover {
    background: #e8e8e8;
}

.legal-content {
    max-width: 860px;
    margin: 48px auto;
    background: #fff;
    padding: 48px;
    border: 1px solid #e8e8e8;
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #8b7355;
}

.legal-content p {
    margin-bottom: 14px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 14px 0 14px 32px;
    line-height: 1.7;
}

.thanks-section {
    text-align: center;
    max-width: 640px;
    margin: 80px auto;
    padding: 60px 40px;
    background: #fff;
    border: 1px solid #e8e8e8;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #8b7355;
    font-weight: 400;
}

.thanks-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .magazine-layout {
        flex-direction: column;
    }

    .two-column {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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

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