:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a8fb5;
    --accent-color: #e8a44c;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-disclosure {
    background: #fff3cd;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hero-magazine {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 5%;
    gap: 40px;
}

.hero-main {
    flex: 2;
    position: relative;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    background: var(--bg-light);
    overflow: hidden;
    margin-bottom: 30px;
}

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-sidebar {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
}

.sidebar-card {
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.sidebar-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.sidebar-list {
    list-style: none;
    margin-top: 15px;
}

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-dark);
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background: #d69538;
}

.magazine-grid {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
    display: flex;
    gap: 40px;
}

.main-column {
    flex: 2.5;
}

.side-column {
    flex: 1;
}

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

.content-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

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

.multi-column-text {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.column {
    flex: 1;
}

.column p {
    font-size: 16px;
    line-height: 1.7;
}

.services-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.service-card-magazine {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card-magazine:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 15px 0;
}

.inline-image-block {
    margin: 50px 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.inline-image-block img {
    width: 45%;
    height: 300px;
    object-fit: cover;
    background: var(--bg-light);
}

.inline-image-block .text-content {
    flex: 1;
}

.feature-box {
    background: var(--bg-light);
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-color);
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 25px;
    margin: 20px 0;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.full-width-section {
    background: var(--bg-light);
    padding: 80px 5%;
    margin: 80px 0;
}

.full-width-content {
    max-width: 1400px;
    margin: 0 auto;
}

.form-section {
    background: var(--bg-white);
    padding: 50px;
    max-width: 700px;
    margin: 60px auto;
    border: 1px solid var(--border-color);
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 5%;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    color: #b0b0b0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 25px 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

.cookie-accept:hover {
    background: #d69538;
}

.cookie-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.about-layout {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content-grid {
    display: flex;
    gap: 40px;
    margin: 60px 0;
}

.about-text-column {
    flex: 1.5;
}

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

.about-image-column img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: var(--bg-light);
}

.contact-layout {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 5%;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin: 50px 0;
}

.info-card {
    flex: 1;
    background: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 5%;
}

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

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

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

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.thanks-page {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 5%;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-icon {
    font-size: 80px;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.disclaimer-section {
    background: #fff8e1;
    border: 1px solid #ffd54f;
    padding: 30px;
    margin: 50px 0;
    border-radius: 4px;
}

.disclaimer-section h3 {
    color: #f57c00;
    margin-bottom: 15px;
}

.disclaimer-section p {
    font-size: 14px;
    color: #5d4037;
    line-height: 1.7;
}

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

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

    .multi-column-text {
        flex-direction: column;
    }

    .inline-image-block {
        flex-direction: column;
    }

    .inline-image-block img {
        width: 100%;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .about-content-grid {
        flex-direction: column;
    }

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

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
}