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

:root {
    --primary: #1a4d7a;
    --secondary: #2d7ab5;
    --accent: #e8934f;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.ad-notice {
    font-size: 11px;
    color: var(--gray);
    padding: 4px 10px;
    background: #f1f1f1;
    border-radius: 4px;
    margin-left: auto;
    margin-right: 20px;
}

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

nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

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

.split-hero {
    display: flex;
    min-height: 550px;
    align-items: stretch;
}

.split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--light);
}

.split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

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

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 122, 0.3);
}

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 480px;
}

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

.content-block {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-block {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: var(--light);
}

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

.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

.section-text {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.3s;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

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

.service-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-select-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 15px;
}

.service-select-btn:hover {
    background: var(--secondary);
}

.service-select-btn.selected {
    background: var(--accent);
}

.form-section {
    background: var(--light);
    padding: 80px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-title {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.form-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 35px;
}

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

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(45, 122, 181, 0.1);
}

.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background: var(--white);
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.stats-section {
    background: var(--primary);
    color: var(--white);
    padding: 70px 20px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

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

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

.references-section {
    background: var(--light);
    padding: 40px 20px;
    margin-top: 60px;
}

.references-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 600;
}

.reference-item {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

.reference-link {
    color: var(--secondary);
    text-decoration: none;
}

.reference-link:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: var(--dark);
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

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

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

.cookie-reject {
    background: var(--light);
    color: var(--dark);
    border: 1px solid #ddd;
}

.cookie-reject:hover {
    background: #e0e0e0;
}

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

.thanks-box {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 72px;
    color: var(--secondary);
    margin-bottom: 24px;
}

.thanks-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
}

.thanks-text {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 35px;
}

.legal-page {
    padding: 80px 20px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 35px;
}

.legal-heading {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 600;
}

.legal-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-list {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 16px;
}

.legal-list li {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    flex: 1;
    background: var(--light);
}

.contact-title {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 20px;
    line-height: 1.6;
}

.about-intro {
    background: var(--light);
    padding: 100px 20px;
    text-align: center;
}

.about-title {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 700;
}

.about-lead {
    font-size: 22px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-number {
    font-size: 48px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 16px;
}

.value-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 600;
}

.value-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .split-hero,
    .split-section,
    .contact-split {
        flex-direction: column;
    }

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

    .header-content {
        flex-wrap: wrap;
    }

    nav ul {
        gap: 15px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .services-grid {
        gap: 20px;
    }
}