:root {
    --primary: #2c3e50;
    --secondary: #8e44ad;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #1a252f;
    --text: #34495e;
    --white: #ffffff;
    --gold: #d4a574;
    --cream: #faf8f5;
}

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

ul {
    list-style: none;
}

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

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

.narrow-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.ad-disclosure {
    background-color: var(--cream);
    padding: 8px 15px;
    font-size: 0.75rem;
    color: var(--text);
    border-radius: 4px;
    margin-right: 20px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: var(--gold);
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.hero-editorial {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.hero-editorial .narrow-container {
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-image-container {
    background-color: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    margin: 40px auto;
    max-width: 900px;
}

.hero-image-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.btn-primary {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

.editorial-section {
    padding: 70px 20px;
}

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

.editorial-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.editorial-section h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.editorial-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.inline-image {
    background-color: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    margin: 30px 0;
}

.inline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.inline-image.small {
    max-width: 400px;
    margin: 30px auto;
}

.inline-image.small img {
    height: 280px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex: 1 1 320px;
    max-width: 380px;
    transition: transform 0.3s ease;
}

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

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

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

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

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

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

.service-price {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-inline {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 50px 20px;
    text-align: center;
    color: var(--white);
    margin: 50px 0;
    border-radius: 12px;
}

.cta-inline h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-inline p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-inline .btn-primary {
    background-color: var(--gold);
}

.testimonial-block {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--gold);
}

.testimonial-block blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-block cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
}

.form-section {
    background-color: var(--cream);
    padding: 70px 20px;
}

.form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

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

.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 10px;
    opacity: 0.85;
}

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

.footer-col ul a {
    color: var(--light);
    opacity: 0.85;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.disclaimer {
    background-color: var(--light);
    padding: 25px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text);
    margin: 40px 0;
    line-height: 1.7;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

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

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

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.content-section {
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-section ul li {
    list-style: disc;
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-info {
    background-color: var(--cream);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.contact-details h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-details p {
    color: var(--text);
    font-size: 0.95rem;
    margin: 0;
}

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

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.about-intro-text {
    flex: 1 1 400px;
}

.about-intro-image {
    flex: 1 1 350px;
    background-color: var(--cream);
    border-radius: 12px;
    overflow: hidden;
}

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

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    flex: 1 1 280px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

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

.value-item p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn-primary {
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

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

    .nav-wrapper {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .ad-disclosure {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

    .hero-editorial .lead {
        font-size: 1.1rem;
    }

    .hero-image-container img {
        height: 300px;
    }

    .editorial-section h2 {
        font-size: 1.6rem;
    }

    .cta-inline h3 {
        font-size: 1.4rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .about-intro-image img {
        height: 300px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
