:root {
    --color-primary: #2c5282;
    --color-secondary: #4a5568;
    --color-accent: #3182ce;
    --color-bg-light: #f7fafc;
    --color-bg-dark: #1a202c;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-white: #ffffff;
    --color-border: #e2e8f0;
    --color-success: #48bb78;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --max-width-narrow: 720px;
    --max-width-medium: 960px;
    --max-width-wide: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

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

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

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

header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 16px 24px;
}

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

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

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

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

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

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

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

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

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

.hero-editorial {
    background-color: var(--color-bg-light);
    padding: 80px 24px 60px;
}

.hero-editorial-inner {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-bg-dark);
    margin-bottom: 24px;
}

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

.hero-image-container {
    background-color: #4a5568;
    border-radius: 12px;
    overflow: hidden;
    margin: 40px auto 0;
    max-width: var(--max-width-medium);
}

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

.editorial-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 60px 24px;
}

.editorial-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-bg-dark);
    margin-bottom: 20px;
    margin-top: 48px;
}

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

.editorial-content p {
    margin-bottom: 20px;
    color: var(--color-text);
}

.editorial-content ul {
    margin: 20px 0 20px 24px;
}

.editorial-content li {
    margin-bottom: 12px;
    color: var(--color-text);
}

.inline-image {
    background-color: #718096;
    border-radius: 8px;
    overflow: hidden;
    margin: 32px 0;
}

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

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

.cta-inline {
    background-color: var(--color-bg-light);
    border-left: 4px solid var(--color-accent);
    padding: 24px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.cta-inline p {
    margin-bottom: 16px;
    font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

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

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

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

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

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

.services-section-inner {
    max-width: var(--max-width-medium);
    margin: 0 auto;
}

.services-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-bg-dark);
    margin-bottom: 16px;
}

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

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

.service-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.service-card-image {
    flex: 0 0 280px;
    background-color: #4a5568;
}

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

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

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-bg-dark);
    margin-bottom: 12px;
}

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

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

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

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

.about-section-inner {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 0 0 380px;
    background-color: #4a5568;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-bg-dark);
    margin-bottom: 20px;
}

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

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 4px;
}

.testimonials-section {
    background-color: var(--color-bg-dark);
    padding: 80px 24px;
}

.testimonials-section-inner {
    max-width: var(--max-width-medium);
    margin: 0 auto;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 48px;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px;
    border-left: 4px solid var(--color-accent);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--color-bg-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-info strong {
    display: block;
    color: var(--color-white);
    font-size: 15px;
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--color-text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    padding: 80px 24px;
    text-align: center;
}

.cta-section-inner {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-section .btn {
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 16px 36px;
    font-size: 16px;
}

.cta-section .btn:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
}

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

.footer-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

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

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

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

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

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

.footer-col a {
    color: var(--color-text-light);
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 13px;
}

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

.footer-links a {
    font-size: 13px;
    color: var(--color-text-light);
}

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

.disclaimer {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    margin-top: 32px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.page-header {
    background-color: var(--color-bg-light);
    padding: 60px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-bg-dark);
    margin-bottom: 12px;
}

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

.page-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 60px 24px;
}

.page-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-bg-dark);
    margin-top: 40px;
    margin-bottom: 16px;
}

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

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

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

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

.services-page-list {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    padding: 60px 24px;
}

.service-detail-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 32px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 0 0 300px;
    background-color: #4a5568;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-bg-dark);
    margin-bottom: 12px;
}

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

.service-features {
    list-style: none;
    margin: 16px 0;
}

.service-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    color: var(--color-text);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent);
    margin: 20px 0;
}

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

.contact-section {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-bg-dark);
    margin-bottom: 24px;
}

.contact-info-item {
    margin-bottom: 24px;
}

.contact-info-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-info-item p {
    color: var(--color-text);
    font-size: 16px;
}

.contact-form-section {
    flex: 1;
    background-color: var(--color-bg-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-form-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-bg-dark);
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background-color: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-main);
    transition: border-color 0.2s ease;
}

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

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

.form-submit {
    margin-top: 24px;
}

.form-submit .btn {
    width: 100%;
}

.thanks-section {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 100px 24px;
    text-align: center;
}

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

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

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

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

.thanks-details {
    background-color: var(--color-bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-bg-dark);
    margin-bottom: 12px;
}

.thanks-details p {
    font-size: 15px;
    margin-bottom: 8px;
}

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

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

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

.cookie-banner p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

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

.btn-accept:hover {
    background-color: #38a169;
    color: var(--color-white);
}

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

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

@media (max-width: 768px) {
    .header-inner {
        padding: 12px 16px;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 16px;
        gap: 8px;
        border-bottom: 1px solid var(--color-border);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px 16px;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .hero-editorial {
        padding: 48px 16px 40px;
    }

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

    .hero-editorial .lead {
        font-size: 16px;
    }

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

    .editorial-content {
        padding: 40px 16px;
    }

    .editorial-content h2 {
        font-size: 22px;
    }

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

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

    .service-card-image {
        flex: none;
        height: 180px;
    }

    .service-card-image img {
        height: 180px;
    }

    .about-section-inner {
        flex-direction: column;
        gap: 32px;
    }

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

    .stats-row {
        justify-content: center;
    }

    .service-detail-card {
        flex-direction: column;
        padding: 24px;
    }

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

    .service-detail-image {
        flex: none;
        width: 100%;
    }

    .contact-section {
        flex-direction: column;
        gap: 40px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

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

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