:root {
    --primary: #2c5f4e;
    --primary-dark: #1e4035;
    --secondary: #d4a853;
    --accent: #8b4513;
    --text-dark: #2a2a2a;
    --text-light: #f8f6f2;
    --bg-cream: #faf8f4;
    --bg-warm: #f0ebe3;
    --bg-dark: #1a1a1a;
    --gray-light: #e8e4dc;
    --gray-medium: #9a9590;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.7;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

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

.ad-disclosure {
    background-color: var(--bg-dark);
    color: var(--gray-medium);
    font-size: 12px;
    padding: 6px 0;
    text-align: center;
}

.header {
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-main {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-main a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

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

.nav-cta {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-bottom-color: transparent;
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hero-magazine {
    display: flex;
    gap: 40px;
    padding: 60px 0;
    align-items: stretch;
}

.hero-main {
    flex: 2;
    position: relative;
    min-height: 480px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--gray-light);
}

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

.hero-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--text-light);
}

.hero-main-overlay h1 {
    font-family: var(--font-heading);
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-main-overlay p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 540px;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-card {
    background-color: var(--bg-warm);
    border-radius: 8px;
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-card-highlight {
    background-color: var(--primary);
    color: var(--text-light);
}

.hero-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
}

.hero-card p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

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

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

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

.btn-secondary:hover {
    background-color: #c49843;
}

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

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

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

.btn-light:hover {
    background-color: var(--gray-light);
}

.section {
    padding: 80px 0;
}

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary);
}

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

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

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

.magazine-main {
    flex: 2;
}

.magazine-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.article-card {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-light);
}

.article-card:last-child {
    border-bottom: none;
}

.article-card-image {
    width: 180px;
    height: 130px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--gray-light);
}

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

.article-card-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-card-content h3 a:hover {
    color: var(--primary);
}

.article-card-content p {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.sidebar-box {
    background-color: var(--bg-cream);
    border-radius: 8px;
    padding: 28px;
    border: 1px solid var(--gray-light);
}

.sidebar-box-dark {
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
}

.sidebar-box h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 16px;
}

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

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px;
}

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

.sidebar-box-dark .sidebar-list li {
    border-bottom-color: rgba(255,255,255,0.15);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background-color: var(--bg-cream);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

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

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

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

.service-card-content p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
}

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

.price-tag span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-medium);
}

.features-row {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
}

.features-row.reverse {
    flex-direction: row-reverse;
}

.features-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--gray-light);
    min-height: 360px;
}

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

.features-content {
    flex: 1;
}

.features-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.features-content p {
    margin-bottom: 24px;
    font-size: 16px;
}

.features-list {
    list-style: none;
    margin-bottom: 28px;
}

.features-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.testimonial-section {
    text-align: center;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--bg-cream);
    padding: 36px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.testimonial-location {
    font-size: 13px;
    color: var(--gray-medium);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 0;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 15px;
    color: var(--gray-medium);
}

.cta-banner {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 60px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 17px;
    opacity: 0.9;
}

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

.contact-info {
    flex: 1;
}

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

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

.contact-block h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary);
}

.contact-block p {
    font-size: 15px;
    line-height: 1.8;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-main);
    background-color: var(--bg-cream);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44,95,78,0.1);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-medium);
}

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

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

.footer-links a {
    font-size: 14px;
    color: var(--gray-medium);
}

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

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

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

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

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

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.content-page h3 {
    font-size: 20px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.content-page p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-page ul {
    margin: 16px 0;
    padding-left: 24px;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

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

.thanks-container h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary);
}

.thanks-container p {
    font-size: 18px;
    color: var(--gray-medium);
    max-width: 500px;
    margin-bottom: 32px;
}

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

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

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

.cookie-content p {
    font-size: 14px;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

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

.cookie-reject {
    background-color: transparent;
    border: 1px solid var(--gray-medium);
    color: var(--text-light);
}

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

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

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

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background-color: var(--gray-light);
}

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

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

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

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

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

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

.about-intro-content {
    flex: 1;
}

.about-intro-content h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary);
}

.about-intro-content p {
    margin-bottom: 18px;
    font-size: 16px;
}

.disclaimer-box {
    background-color: var(--bg-warm);
    border-left: 4px solid var(--secondary);
    padding: 24px;
    margin: 40px 0;
    font-size: 14px;
}

.disclaimer-box p {
    margin-bottom: 0;
}

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

    .hero-sidebar {
        flex-direction: row;
    }

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

    .magazine-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-box {
        flex: 1 1 calc(50% - 16px);
        min-width: 280px;
    }

    .features-row,
    .features-row.reverse {
        flex-direction: column;
    }

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

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

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

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

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

@media (max-width: 768px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-cream);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-light);
    }

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

    .hamburger {
        display: flex;
    }

    .hero-main {
        min-height: 360px;
    }

    .hero-main-overlay h1 {
        font-size: 28px;
    }

    .hero-sidebar {
        flex-direction: column;
    }

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

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

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

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

    .article-card {
        flex-direction: column;
    }

    .article-card-image {
        width: 100%;
        height: 180px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .team-member {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (max-width: 480px) {
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-main-overlay {
        padding: 24px;
    }

    .hero-main-overlay h1 {
        font-size: 24px;
    }

    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .cta-banner {
        padding: 40px 24px;
    }

    .cta-banner h2 {
        font-size: 26px;
    }
}
