:root {
    --primary: #1a2e4c;
    --secondary: #c9a227;
    --accent: #3d5a80;
    --light: #f7f9fc;
    --dark: #0d1b2a;
    --text: #2b3e50;
    --muted: #6c7a89;
    --white: #ffffff;
    --fallback-img: #e8ecf1;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

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

.ad-disclosure {
    background-color: var(--dark);
    color: var(--white);
    font-size: 11px;
    text-align: center;
    padding: 6px 12px;
}

.top-nav {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 15px;
    color: var(--text);
    transition: color 0.2s;
    padding: 8px 0;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

.hero-magazine {
    display: flex;
    min-height: 85vh;
    background-color: var(--fallback-img);
}

.hero-visual {
    flex: 1.4;
    position: relative;
    overflow: hidden;
    background-color: var(--fallback-img);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--light);
}

.hero-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 42px;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--light);
}

.section-dark {
    background-color: var(--dark);
    color: var(--white);
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

.section-dark .section-title {
    color: var(--white);
}

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

.magazine-main {
    flex: 2;
}

.magazine-sidebar {
    flex: 1;
}

.feature-article {
    margin-bottom: 50px;
}

.feature-image {
    width: 100%;
    height: 400px;
    background-color: var(--fallback-img);
    margin-bottom: 24px;
    overflow: hidden;
}

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

.feature-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.feature-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.feature-excerpt {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.sidebar-block {
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.06);
}

.sidebar-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}

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

.sidebar-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 14px;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-image {
    height: 200px;
    background-color: var(--fallback-img);
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-body {
    padding: 28px;
}

.service-name {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    color: var(--secondary);
    font-weight: 700;
}

.service-price span {
    font-size: 14px;
    color: var(--muted);
    font-weight: 400;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-visual {
    flex: 1;
    background-color: var(--fallback-img);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.about-text {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 18px;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 42px;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    margin-top: 6px;
}

.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

.testimonial-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255,255,255,0.05);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-text {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: var(--secondary);
    font-weight: 600;
}

.testimonial-role {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.cta-block {
    background-color: var(--secondary);
    padding: 60px;
    text-align: center;
}

.cta-title {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-text {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

.cta-block .btn-primary {
    background-color: var(--dark);
}

.cta-block .btn-primary:hover {
    background-color: var(--primary);
}

.form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border: 1px solid rgba(0,0,0,0.08);
}

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

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

.form-label {
    display: block;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid rgba(0,0,0,0.12);
    background-color: var(--light);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,46,76,0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 10px;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form-wrap {
    flex: 1.2;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-value {
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
}

.footer {
    background-color: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-title {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--secondary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-accept {
    background-color: var(--secondary);
    color: var(--dark);
}

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn:hover {
    opacity: 0.85;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: var(--white);
}

.thanks-title {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-text {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.legal-content {
    padding: 80px 0;
}

.legal-title {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-section p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 8px;
    line-height: 1.7;
}

.page-header {
    background-color: var(--light);
    padding: 60px 0;
    margin-bottom: 0;
}

.page-header-title {
    font-size: 38px;
    color: var(--primary);
    font-weight: 700;
}

.page-header-sub {
    font-size: 17px;
    color: var(--muted);
    margin-top: 12px;
}

.inline-cta {
    background-color: var(--light);
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.inline-cta-text {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 20px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 300px;
    height: 300px;
    background-color: var(--fallback-img);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.disclaimer-box {
    background-color: rgba(0,0,0,0.03);
    padding: 24px 30px;
    margin-top: 60px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    border-left: 3px solid var(--secondary);
}

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

    .hero-visual {
        min-height: 50vh;
    }

    .hero-content {
        padding: 50px 30px;
    }

    .hero-title {
        font-size: 32px;
    }

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

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

    .about-visual {
        min-height: 350px;
        width: 100%;
    }

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

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
    }

    .mobile-toggle {
        display: block;
    }

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

    .stats-row {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 15px);
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .form-container {
        padding: 30px 20px;
    }

    .gallery-item {
        flex: 1 1 100%;
    }
}
