:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --accent: #c53030;
    --accent-hover: #9b2c2c;
    --neutral-100: #f7fafc;
    --neutral-200: #edf2f7;
    --neutral-300: #e2e8f0;
    --neutral-600: #4a5568;
    --neutral-700: #2d3748;
    --neutral-900: #1a202c;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.25s ease;
    --max-width-narrow: 680px;
    --max-width-content: 920px;
    --max-width-wide: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--neutral-700);
    background-color: var(--neutral-100);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

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

.ad-disclosure {
    background-color: var(--neutral-200);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.8rem;
    color: var(--neutral-600);
    border-bottom: 1px solid var(--neutral-300);
}

header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-700);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--neutral-700);
    padding: 8px 0;
    position: relative;
}

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

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

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

main {
    flex: 1;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: var(--max-width-content);
    padding: 48px 24px;
    color: var(--white);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.section {
    padding: 80px 24px;
}

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

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

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--neutral-900);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-dark .section-header h2 {
    color: var(--white);
}

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

.section-dark .section-header p {
    color: var(--neutral-200);
}

.editorial-block {
    max-width: var(--max-width-narrow);
    margin: 0 auto 48px;
}

.editorial-block h3 {
    font-size: 1.5rem;
    color: var(--neutral-900);
    margin-bottom: 16px;
    font-weight: 600;
}

.editorial-block p {
    margin-bottom: 16px;
    color: var(--neutral-700);
}

.editorial-image {
    margin: 32px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--neutral-300);
}

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

.inline-cta {
    background-color: var(--neutral-200);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 40px 0;
}

.inline-cta h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--neutral-900);
}

.inline-cta p {
    margin-bottom: 20px;
    color: var(--neutral-600);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    flex: 1 1 340px;
    max-width: 380px;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

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

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

.service-card h3 {
    font-size: 1.25rem;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

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

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

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--neutral-600);
}

.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

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

.split-content {
    flex: 1 1 400px;
}

.split-content h2 {
    font-size: 2rem;
    color: var(--neutral-900);
    margin-bottom: 20px;
}

.split-content p {
    margin-bottom: 16px;
    color: var(--neutral-700);
}

.split-image {
    flex: 1 1 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--neutral-300);
}

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

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

.features-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--neutral-700);
}

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

.testimonial {
    background-color: var(--neutral-200);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin: 32px 0;
    border-left: 4px solid var(--accent);
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--neutral-700);
    margin-bottom: 16px;
}

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

.contact-info {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--neutral-900);
    margin-bottom: 24px;
}

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

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

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

.contact-item-text h4 {
    font-size: 1rem;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.contact-item-text p {
    color: var(--neutral-600);
    font-size: 0.95rem;
}

.form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-container h3 {
    font-size: 1.5rem;
    color: var(--neutral-900);
    margin-bottom: 24px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,54,93,0.1);
}

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

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

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

footer {
    background-color: var(--neutral-900);
    color: var(--neutral-200);
    padding: 60px 24px 24px;
}

.footer-grid {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
}

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

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

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

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

.footer-col a {
    color: var(--neutral-300);
    font-size: 0.95rem;
}

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

.footer-col p {
    color: var(--neutral-300);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: var(--max-width-wide);
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--neutral-700);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

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

.footer-legal a {
    color: var(--neutral-300);
}

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

.disclaimer {
    background-color: var(--neutral-200);
    padding: 24px;
    border-radius: var(--radius);
    margin: 32px 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

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

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

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.text-content h2 {
    font-size: 1.75rem;
    color: var(--neutral-900);
    margin: 32px 0 16px;
}

.text-content h3 {
    font-size: 1.25rem;
    color: var(--neutral-900);
    margin: 24px 0 12px;
}

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

.text-content ul,
.text-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.text-content li {
    margin-bottom: 8px;
    color: var(--neutral-700);
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
}

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

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--neutral-600);
    margin-bottom: 32px;
}

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

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

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

.cookie-text {
    flex: 1 1 400px;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--neutral-200);
    text-decoration: underline;
}

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

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

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

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

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

.cookie-reject:hover {
    background-color: var(--neutral-700);
}

.about-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

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

.about-intro-text h2 {
    font-size: 2rem;
    color: var(--neutral-900);
    margin-bottom: 20px;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.value-item {
    flex: 1 1 280px;
    text-align: center;
    padding: 32px 24px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

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

.value-item h4 {
    font-size: 1.1rem;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.value-item p {
    color: var(--neutral-600);
    font-size: 0.95rem;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
}

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

    nav {
        flex-basis: 100%;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
    }

    nav li {
        width: 100%;
    }

    nav a {
        display: block;
        padding: 12px 0;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 50px 20px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .split-section {
        gap: 32px;
    }

    .split-image img {
        height: 280px;
    }

    .footer-grid {
        gap: 32px;
    }

    .page-header {
        padding: 60px 20px;
    }

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

    .form-container {
        padding: 24px;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
    }

    .sticky-cta .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
