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

:root {
    --primary-coal: #2c3e50;
    --secondary-rust: #c0504d;
    --accent-steel: #7f8c8d;
    --light-concrete: #ecf0f1;
    --dark-iron: #1a1a1a;
    --warm-brick: #8b4513;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--dark-iron);
    background: #fff;
}

.ad-notice {
    background: var(--accent-steel);
    color: white;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    font-family: sans-serif;
}

header {
    background: linear-gradient(135deg, var(--primary-coal) 0%, var(--warm-brick) 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: sans-serif;
}

.nav-links a:hover {
    color: var(--light-concrete);
}

.hero-magazine {
    display: flex;
    min-height: 85vh;
    background: var(--light-concrete);
}

.hero-left {
    flex: 1.2;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-coal);
}

.hero-left .subtitle {
    font-size: 1.3rem;
    color: var(--accent-steel);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--accent-steel);
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(44,62,80,0.3), transparent);
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-rust);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.05rem;
    border-radius: 3px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: sans-serif;
}

.cta-primary:hover {
    background: var(--warm-brick);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.magazine-grid {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
}

.main-column {
    flex: 2;
}

.sidebar-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-block {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--secondary-rust);
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-coal);
}

.content-block h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: var(--primary-coal);
}

.content-block p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.feature-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 2rem 0;
    border-radius: 2px;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-top: 3px solid var(--warm-brick);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sidebar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-coal);
}

.sidebar-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-bottom: 4px solid var(--accent-steel);
    transition: all 0.3s;
}

.service-card:hover {
    border-bottom-color: var(--secondary-rust);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-coal);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #555;
}

.price {
    font-size: 1.8rem;
    color: var(--secondary-rust);
    font-weight: 700;
    margin: 1rem 0;
    font-family: sans-serif;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: var(--light-concrete);
}

.form-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background: white;
    border: 1px solid #ddd;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-coal);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-coal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
}

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

.split-section {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 0;
    align-items: stretch;
}

.split-content {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--light-concrete);
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: var(--accent-steel);
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--primary-coal);
    color: white;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-layout {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
}

.contact-main {
    flex: 1.5;
}

.contact-aside {
    flex: 1;
    background: var(--light-concrete);
    padding: 2rem;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-coal);
}

.contact-info-item p {
    color: #555;
    line-height: 1.8;
}

.legal-content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem;
    background: white;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-coal);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-coal);
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

footer {
    background: var(--dark-iron);
    color: white;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}

.disclaimer {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background: #fffbf0;
    border-left: 4px solid var(--warm-brick);
    font-size: 0.9rem;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 1.5rem 2rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--secondary-rust);
    color: white;
}

.btn-accept:hover {
    background: var(--warm-brick);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.thanks-container {
    max-width: 700px;
    margin: 6rem auto;
    padding: 4rem 3rem;
    text-align: center;
    background: white;
    border-top: 5px solid var(--secondary-rust);
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-coal);
}

.thanks-container p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.checkmark {
    font-size: 4rem;
    color: var(--secondary-rust);
    margin-bottom: 1rem;
}

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

    .hero-right {
        min-height: 400px;
    }

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

    .split-section {
        flex-direction: column;
    }

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

    .stats-bar {
        flex-direction: column;
        gap: 2rem;
    }

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