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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7ac4;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --text-gray: #666;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-actions button {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #e67e22;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
}

.hero-content-side {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-gray);
}

.hero-content-side h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual-side {
    flex: 1;
    overflow: hidden;
}

.hero-visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.stats-bar {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 0;
}

.content-visual {
    flex: 1;
    overflow: hidden;
}

.content-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.content-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    display: inline-block;
}

.link-arrow::after {
    content: ' →';
}

.link-arrow:hover {
    color: var(--secondary-color);
}

.services-overview {
    background: var(--bg-gray);
    padding: 5rem 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.services-grid-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.select-service {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.form-split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-info-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info-side h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-info-side p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
}

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

.form-side {
    flex: 1;
    background: var(--bg-gray);
    padding: 3rem;
    border-radius: 8px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.trust-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.trust-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1.5;
}

.trust-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.trust-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-metric {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.trust-metric h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-metric p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.testimonials-flow {
    background: var(--bg-gray);
    padding: 5rem 2rem;
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.testimonial-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.cta-sticky-section {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-sticky-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1.25rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

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

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section ul li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-info-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-item {
    flex: 1;
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.thanks-container {
    max-width: 700px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--accent-color);
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-container p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-service-box {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-service-box strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-back-home {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: var(--secondary-color);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-split,
    .split-reverse,
    .form-split-container,
    .trust-content-split {
        flex-direction: column;
    }

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

    .stats-bar {
        flex-direction: column;
        gap: 2rem;
    }

    .services-grid-split {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .testimonial-cards {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

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