:root {
    --primary: #2c3e50;
    --secondary: #8b4513;
    --accent: #c9a227;
    --text: #333333;
    --text-light: #666666;
    --bg-light: #f8f6f2;
    --bg-warm: #efe9df;
    --white: #ffffff;
    --border: #d4c9b8;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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;
}

.ad-disclosure {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
}

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

nav ul li a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 80px 0;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero p {
    font-size: 20px;
    max-width: 550px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.section {
    padding: 80px 0;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

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

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

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    border-left: 4px solid var(--accent);
    padding-left: 24px;
    margin-bottom: 32px;
}

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

.content-block h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 16px;
}

.content-block p {
    margin-bottom: 16px;
}

.sidebar-card {
    background-color: var(--white);
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.sidebar-card h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

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

.sidebar-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
    height: 200px;
    background-color: var(--bg-warm);
    overflow: hidden;
}

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

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

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

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

.service-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: normal;
}

.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

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

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-warm);
}

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

.split-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.split-content p {
    margin-bottom: 16px;
    font-size: 17px;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 32px;
    border-left: 4px solid var(--accent);
}

.testimonial p {
    font-style: italic;
    font-size: 17px;
    margin-bottom: 20px;
}

.testimonial-author {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
}

.form-section {
    background-color: var(--bg-warm);
    padding: 60px;
}

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

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

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: Georgia, serif;
    font-size: 16px;
    border: 1px solid var(--border);
    background-color: var(--bg-light);
    transition: border-color 0.3s ease;
}

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

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

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn {
    width: 100%;
}

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

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 17px;
    color: var(--text);
}

footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 64px 0 32px;
}

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

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

.footer-col h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-links {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

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

.disclaimer {
    background-color: var(--bg-warm);
    padding: 24px;
    margin-top: 48px;
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.legal-page h2 {
    font-size: 26px;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page p {
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

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

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

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

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

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

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

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

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

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

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

.cookie-buttons button {
    padding: 12px 24px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.references {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.references h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
}

.references ol {
    margin-left: 24px;
}

.references ol li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.references ol li a {
    word-break: break-all;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li a {
        display: block;
        padding: 12px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .section {
        padding: 56px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .split-section {
        gap: 32px;
    }

    .split-image img {
        height: 280px;
    }

    .form-section {
        padding: 32px 16px;
    }

    .form-container {
        padding: 32px 24px;
    }

    .footer-grid {
        gap: 32px;
    }

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