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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
}

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

.header-top {
    background: var(--primary-color);
    padding: 8px 0;
}

.ad-disclosure {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--bg-white);
    font-size: 12px;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.main-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #2c5f4f;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    font-family: 'Arial', sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #c59563;
    transform: translateY(-2px);
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.main-column {
    flex: 2;
    min-width: 300px;
}

.sidebar-column {
    flex: 1;
    min-width: 280px;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 400;
}

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

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateX(5px);
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 400;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.price-tag {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.sidebar-widget {
    background: var(--bg-light);
    padding: 35px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
}

.sidebar-widget ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.image-feature {
    margin: 40px 0;
    background-color: #e0d5c7;
}

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

.split-section {
    display: flex;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.split-section .split-content {
    flex: 1;
    min-width: 300px;
}

.split-section .split-image {
    flex: 1;
    min-width: 300px;
    background-color: #d4a574;
}

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

.contact-form {
    background: var(--bg-light);
    padding: 45px;
    max-width: 700px;
    margin: 40px auto;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    background: var(--bg-white);
}

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

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #234738;
}

footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 400;
}

.footer-section p,
.footer-section ul li {
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.footer-section a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
    text-align: center;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
    color: #9a9a9a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 25px;
    z-index: 9999;
    display: none;
    font-family: 'Arial', sans-serif;
}

.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-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-buttons button {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s ease;
}

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

.cookie-reject {
    background: var(--border-color);
    color: var(--text-dark);
}

.cookie-buttons button:hover {
    opacity: 0.9;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--secondary-color);
    font-weight: 400;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: var(--text-light);
}

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    background: var(--bg-light);
    text-align: center;
}

.thanks-container h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s ease;
}

.back-link:hover {
    background: #234738;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

    .main-nav ul {
        gap: 20px;
    }

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

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