:root {
    --primary: #1a3a5c;
    --secondary: #c9a227;
    --accent: #4a7c59;
    --light: #f8f6f2;
    --dark: #2c2c2c;
    --gray: #6b7280;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 6px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

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

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

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

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

.hero-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px 60px 0;
}

.hero-image-col {
    flex: 1.2;
    position: relative;
    background-color: var(--primary);
}

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

.hero-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 600;
}

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

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 480px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #0f2740;
    color: var(--white);
}

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

.btn-secondary:hover {
    background: #b08f1f;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.section {
    padding: 80px 0;
}

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

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

.section-title {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 48px;
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.8);
}

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

.magazine-main {
    flex: 2;
}

.magazine-sidebar {
    flex: 1;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 32px;
}

.feature-card-image {
    height: 220px;
    background-color: var(--gray);
    position: relative;
}

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

.feature-card-content {
    padding: 28px;
}

.feature-card-title {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card-text {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.sidebar-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.sidebar-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}

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

.service-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.service-name {
    font-weight: 500;
    color: var(--dark);
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.service-card-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card-desc {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-card-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

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

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    background-color: var(--gray);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.about-text {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

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

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

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

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 8px;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2740 100%);
    color: var(--white);
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-section {
    background: var(--secondary);
    text-align: center;
    padding: 64px 0;
}

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

.cta-text {
    color: var(--dark);
    opacity: 0.85;
    margin-bottom: 28px;
    font-size: 1.1rem;
}

.form-container {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 600;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

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

.contact-info {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 28px;
}

.contact-item-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 8px;
}

.contact-item-value {
    font-size: 1.1rem;
    color: var(--dark);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0 24px;
}

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

.footer-col {
    flex: 1;
}

.footer-col:first-child {
    flex: 1.5;
}

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

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

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

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

.footer-legal a {
    color: rgba(255,255,255,0.6);
}

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

.disclaimer {
    background: var(--light);
    padding: 24px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 40px;
    line-height: 1.7;
}

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

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

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

.cookie-text {
    font-size: 0.9rem;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    font-weight: 500;
}

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

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

.page-header {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
}

.content-page {
    padding: 60px 0;
}

.content-page h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 32px 0 16px;
    font-weight: 600;
}

.content-page h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 24px 0 12px;
    font-weight: 600;
}

.content-page p {
    color: var(--gray);
    margin-bottom: 16px;
}

.content-page ul {
    color: var(--gray);
    margin: 16px 0;
    padding-left: 24px;
}

.content-page li {
    margin-bottom: 8px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.thanks-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-text {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

    .hero-text-col {
        padding: 48px 24px;
    }

    .hero-image-col {
        min-height: 350px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .magazine-sidebar {
        order: -1;
    }

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

    .about-image {
        width: 100%;
        min-height: 300px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow);
    }

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

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

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

    .hamburger {
        display: flex;
    }

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

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

    .stat-item {
        flex: 1 1 45%;
    }

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

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

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