:root {
    --primary: #1a3a52;
    --secondary: #c9a962;
    --accent: #8b4513;
    --bg-light: #faf8f5;
    --bg-dark: #2c3e50;
    --text-dark: #2d2d2d;
    --text-light: #f5f5f5;
    --text-muted: #6b7280;
    --border: #e5e1d8;
    --shadow: rgba(26, 58, 82, 0.12);
}

* {
    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-dark);
    background-color: var(--bg-light);
}

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

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

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

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

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

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

header {
    background-color: #fff;
    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: 18px 0;
}

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

.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;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

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

nav ul li a:hover::after {
    width: 100%;
}

.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: #d4c5a9;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(26, 58, 82, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    line-height: 1.6;
}

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

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

.btn-primary:hover {
    background-color: #d4b872;
    color: var(--primary);
}

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

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

.btn-dark {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-dark:hover {
    background-color: #234a66;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: #fff;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

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

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

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
}

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

.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: 19px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.intro-text:first-letter {
    font-size: 58px;
    float: left;
    line-height: 1;
    margin-right: 12px;
    color: var(--secondary);
    font-weight: 700;
}

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

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

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

.featured-img {
    width: 100%;
    height: 320px;
    background-color: #c9b896;
    margin-bottom: 32px;
    overflow: hidden;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 28px);
    min-width: 280px;
    background-color: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 40px var(--shadow);
}

.service-card-img {
    height: 200px;
    background-color: #c9b896;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

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

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

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

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

.split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.split-content {
    flex: 1;
    min-width: 300px;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background-color: #c9b896;
    position: relative;
}

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

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

.split-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-section {
    background: linear-gradient(to bottom, var(--bg-light) 0%, #fff 100%);
}

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

.testimonial-card {
    flex: 1 1 calc(50% - 32px);
    min-width: 300px;
    background-color: #fff;
    padding: 36px;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 4px 20px var(--shadow);
}

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

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

.testimonial-author span {
    font-weight: 400;
    color: var(--text-muted);
}

.cta-section {
    background-color: var(--primary);
    text-align: center;
    padding: 70px 24px;
}

.cta-section h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 18px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background-color: #fff;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    border: 1px solid var(--border);
    background-color: #fff;
    color: var(--text-dark);
    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: 140px;
    resize: vertical;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

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

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

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

footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.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: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

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

.disclaimer {
    background-color: #f5f3ef;
    border-top: 1px solid var(--border);
    padding: 24px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.page-header h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

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

.content-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 36px 0 18px;
}

.content-page h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin: 28px 0 14px;
}

.content-page p {
    margin-bottom: 18px;
}

.content-page ul {
    margin: 18px 0 18px 24px;
}

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

.thanks-container {
    text-align: center;
    padding: 100px 24px;
    max-width: 640px;
    margin: 0 auto;
}

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

.thanks-container p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--primary);
}

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

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

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

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

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

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

.cookie-btn {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: #d4b872;
}

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

.cookie-reject:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.value-item {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 240px;
    text-align: center;
    padding: 32px 24px;
    background-color: #fff;
    border: 1px solid var(--border);
}

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

.value-item p {
    font-size: 15px;
    color: var(--text-muted);
}

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

.team-member {
    flex: 1 1 calc(25% - 32px);
    min-width: 220px;
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #c9b896;
    margin: 0 auto 20px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 6px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    nav ul.active {
        display: flex;
    }

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

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 38px;
    }

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

    .split-content {
        padding: 40px 24px;
    }

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

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

    .section {
        padding: 50px 0;
    }

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

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

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