:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #c53030;
    --accent: #ed8936;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #ffffff;
    --bg-alt: #f7fafc;
    --bg-dark: #1a202c;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --max-width: 1200px;
    --content-width: 720px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.25rem; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-narrow {
    max-width: var(--content-width);
    margin: 0 auto;
}

.ad-disclosure {
    background: var(--bg-alt);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

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

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

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

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

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--primary);
}

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

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--bg);
    padding: 4rem 0;
}

.hero h1 {
    color: var(--bg);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #9b2c2c;
    color: var(--bg);
}

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

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

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

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

.section {
    padding: 5rem 0;
}

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

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

.section-dark h2,
.section-dark h3 {
    color: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.editorial-block {
    margin-bottom: 3rem;
}

.editorial-block:last-child {
    margin-bottom: 0;
}

.editorial-image {
    margin: 2rem 0;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--bg-alt);
}

.editorial-image img {
    width: 100%;
    height: auto;
}

.editorial-image.float-left {
    float: left;
    width: 45%;
    margin: 0 2rem 1rem 0;
}

.editorial-image.float-right {
    float: right;
    width: 45%;
    margin: 0 0 1rem 2rem;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.split-section {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--bg-alt);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--bg-alt);
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 0.5rem;
}

.service-content p {
    color: var(--text-light);
    flex: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 1rem;
}

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

.testimonial-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg);
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.875rem;
    opacity: 0.8;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--secondary);
    color: var(--bg);
    border-radius: var(--radius);
    margin: 3rem 0;
}

.cta-section h2 {
    color: var(--bg);
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    background: var(--bg);
    color: var(--secondary);
}

.cta-section .btn:hover {
    background: var(--bg-alt);
}

.form-section {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s ease;
    font-family: inherit;
}

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

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

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-item {
    flex: 1 1 280px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--bg);
}

.feature-item h3 {
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.footer {
    background: var(--bg-dark);
    color: var(--bg);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: var(--bg);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--bg);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

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

.disclaimer {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 3rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
    border-left: 4px solid var(--accent);
}

.disclaimer h4 {
    color: var(--text);
    margin-bottom: 0.75rem;
}

.legal-content {
    padding: 3rem 0;
}

.legal-content h1 {
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
}

.legal-content ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--bg);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1 1 400px;
    margin-bottom: 0;
    font-size: 0.9375rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

.btn-accept {
    background: var(--accent);
    color: var(--bg-dark);
}

.btn-accept:hover {
    background: #dd6b20;
    color: var(--bg-dark);
}

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

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.about-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg);
    text-align: center;
}

.about-hero h1 {
    color: var(--bg);
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-card {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.team-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    background-color: var(--bg-alt);
}

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

.team-card h3 {
    margin-bottom: 0.25rem;
}

.team-card .role {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.stats-section {
    background: var(--bg-alt);
    padding: 4rem 0;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    text-align: center;
}

.stat-item {
    flex: 1 1 150px;
    max-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
    }

    .nav.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
        z-index: 101;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

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

    .hero {
        min-height: 50vh;
    }

    .split-section {
        flex-direction: column;
        gap: 2rem;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        gap: 1rem;
    }

    .service-image {
        width: 100%;
        height: 200px;
    }

    .editorial-image.float-left,
    .editorial-image.float-right {
        float: none;
        width: 100%;
        margin: 1.5rem 0;
    }

    .footer-grid {
        gap: 2rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
