:root {
    --primary: #2c5282;
    --primary-dark: #1a365d;
    --secondary: #ed8936;
    --accent: #38a169;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #ffffff;
    --bg-alt: #f7fafc;
    --bg-dark: #edf2f7;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --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', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
}

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

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

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

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

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

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

.header {
    background-color: var(--bg);
    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: 16px 0;
}

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

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

.nav {
    display: flex;
    gap: 32px;
}

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

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text);
}

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1a365d;
}

.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;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 80px 0;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

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

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

.btn-primary:hover {
    background-color: #dd6b20;
    color: #ffffff;
}

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

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

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.section {
    padding: 80px 0;
}

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

.section-dark {
    background-color: var(--primary-dark);
    color: #ffffff;
}

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

.section-dark .section-title {
    color: #ffffff;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.editorial-block {
    margin-bottom: 48px;
}

.editorial-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.editorial-block h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary);
}

.editorial-block p {
    margin-bottom: 20px;
}

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

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

.editorial-image.full-width {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
}

.inline-cta {
    background-color: var(--bg-alt);
    padding: 32px;
    border-radius: var(--radius);
    margin: 40px 0;
    text-align: center;
    border-left: 4px solid var(--secondary);
}

.inline-cta p {
    margin-bottom: 16px;
    font-size: 18px;
}

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

.service-item {
    background-color: var(--bg);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: box-shadow 0.3s ease;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background-color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

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

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

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

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

.card {
    flex: 1 1 300px;
    background-color: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 200px;
    background-color: var(--bg-dark);
}

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

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

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

.testimonial {
    background-color: var(--bg);
    padding: 32px;
    border-radius: var(--radius);
    margin: 40px 0;
    position: relative;
    box-shadow: var(--shadow);
}

.testimonial::before {
    content: '"';
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

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

.testimonial-role {
    color: var(--text-light);
    font-size: 14px;
}

.split-section {
    display: flex;
    gap: 48px;
    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-dark);
}

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

.form-container {
    background-color: var(--bg);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.contact-info {
    background-color: var(--bg-alt);
    padding: 32px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
}

.contact-text strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

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

.footer {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 64px 0 32px;
}

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

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

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.disclaimer {
    background-color: var(--bg-dark);
    padding: 24px;
    border-radius: var(--radius);
    margin: 48px 0;
    font-size: 14px;
    color: var(--text-light);
    border-left: 4px solid var(--text-light);
}

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-dark);
}

.legal-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--primary-dark);
}

.legal-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 16px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

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

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

.cookie-text {
    flex: 1 1 400px;
}

.cookie-text p {
    margin-bottom: 8px;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.cookie-accept {
    background-color: var(--accent);
    color: #ffffff;
}

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-reject:hover {
    border-color: #ffffff;
}

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

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: #ffffff;
}

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

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

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin: 48px 0;
}

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

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

.stat-label {
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: var(--bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
}

.principle-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.principle-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.principle-content p {
    color: var(--text-light);
    margin: 0;
}

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

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav a:last-child {
        border-bottom: none;
    }

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

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

    .hero p {
        font-size: 18px;
    }

    .section {
        padding: 48px 0;
    }

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

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

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

    .service-item {
        flex-direction: column;
    }

    .footer-grid {
        gap: 32px;
    }

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

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

    .stats-row {
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }
}
