:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #1a252f;
    --text: #2c3e50;
    --text-light: #7f8c8d;
    --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', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

a {
    color: var(--accent);
    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: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.ad-disclosure {
    background: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
}

.top-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    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: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

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

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 24px;
    max-width: 800px;
}

.hero-editorial .lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 700px;
}

.hero-image-wrap {
    margin: 40px 0;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--light);
}

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

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

.editorial-content h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
    margin-top: 48px;
}

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

.editorial-content p {
    margin-bottom: 20px;
    font-size: 17px;
}

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

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

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-light);
    background: var(--light);
}

.cta-inline {
    background: var(--primary);
    color: var(--white);
    padding: 32px 40px;
    border-radius: var(--radius);
    margin: 48px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-inline h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.cta-inline p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

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

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

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

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

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

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

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

.services-section {
    padding: 80px 0;
    background: var(--light);
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.services-section .section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    color: var(--text-light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 40%;
    min-height: 280px;
    background-color: var(--light);
}

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

.service-content {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

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

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

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

.about-text p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.about-image {
    flex: 0 0 45%;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--light);
}

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

.testimonials-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: var(--radius);
}

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

.testimonial-author {
    font-weight: 600;
    font-size: 15px;
}

.testimonial-role {
    font-size: 13px;
    opacity: 0.7;
}

.contact-section {
    padding: 80px 0;
    background: var(--light);
}

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

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

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

.contact-info p {
    margin-bottom: 16px;
    color: var(--text-light);
}

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

.contact-detail-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    flex-shrink: 0;
}

.contact-detail-text {
    color: var(--text);
}

.contact-detail-text strong {
    display: block;
    margin-bottom: 4px;
}

.contact-form-wrap {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 15px;
    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(--accent);
}

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

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

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

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

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

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

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

.footer-col ul a {
    color: var(--light);
    opacity: 0.8;
    font-size: 14px;
}

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

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

.disclaimer {
    background: #fef3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 24px;
    margin: 40px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.disclaimer p {
    font-size: 14px;
    color: #856404;
    margin: 0;
}

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

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

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

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

.legal-content p,
.legal-content ul {
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul {
    padding-left: 24px;
}

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

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

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: var(--white);
}

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

.thanks-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.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;
    flex-wrap: wrap;
}

.cookie-inner p {
    flex: 1;
    font-size: 14px;
    margin: 0;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    cursor: pointer;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: #c0392b;
}

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

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

.stats-section {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #c0392b 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 48px;
}

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

.team-card {
    flex: 0 0 calc(33.333% - 22px);
    min-width: 260px;
    text-align: center;
}

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

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

.team-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 4px;
}

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

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

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

    .hamburger {
        display: flex;
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 200px;
    }

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

    .about-image {
        flex: 0 0 auto;
        width: 100%;
    }

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

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

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

    .stats-grid {
        gap: 32px;
    }

    .team-card {
        flex: 0 0 100%;
    }
}
