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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: #1a5490;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
}

.split-hero {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.split-left {
    background: linear-gradient(135deg, #1a5490 0%, #2d6ba8 100%);
    color: white;
}

.split-right {
    background: #f8f9fa;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #1a5490;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: #1a5490;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 84, 144, 0.3);
}

.hero-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(45deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: #1a5490;
}

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

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

.section-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.section-half.dark {
    background: #2c3e50;
    color: white;
}

.section-half.light {
    background: white;
}

.section-half.accent {
    background: #f8f9fa;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: inherit;
}

.section-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 15px 0;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list li:before {
    content: "✓";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #1a5490;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    flex-shrink: 0;
}

.section-half.dark .feature-list li:before {
    background: white;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #1a5490;
    margin: 20px 0;
}

.service-price-label {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 60px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

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

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a5490;
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: #1a5490;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.form-submit:hover {
    background: #2d6ba8;
    transform: translateY(-2px);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 20px 40px;
    background: #1a5490;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 5px 25px rgba(26, 84, 144, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.05);
}

.testimonial-section {
    background: white;
    padding: 100px 60px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid #1a5490;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #2c3e50;
}

.testimonial-author {
    font-weight: 600;
    color: #1a5490;
    font-size: 16px;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

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

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: 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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    padding: 30px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    color: #2c3e50;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.cookie-accept {
    background: #1a5490;
    color: white;
}

.cookie-reject {
    background: #e9ecef;
    color: #2c3e50;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a5490 0%, #2d6ba8 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

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

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.page-hero {
    background: linear-gradient(135deg, #1a5490 0%, #2d6ba8 100%);
    color: white;
    padding: 150px 60px 80px;
    text-align: center;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 22px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

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

.content-split {
    display: flex;
    gap: 60px;
    margin: 60px 0;
}

.content-main {
    flex: 2;
}

.content-sidebar {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    height: fit-content;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.sidebar-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.content-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 25px;
}

.stats-section {
    background: #f8f9fa;
    padding: 80px 60px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #1a5490;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 18px;
    color: #666;
}

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

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

.legal-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-text {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 15px;
}

.legal-list {
    margin: 20px 0 20px 30px;
}

.legal-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .split-hero {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 40px 30px;
    }

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

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

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

    .section-half {
        padding: 60px 30px;
    }

    nav ul {
        display: none;
    }

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

    nav.mobile-active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 15px 30px;
        font-size: 14px;
    }

    .page-hero {
        padding: 120px 30px 60px;
    }

    .page-title {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
    }

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

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

    .form-container {
        padding: 35px 25px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
