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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background: #ffffff;
}

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

header {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

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

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

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

nav a:hover {
    color: #ffffff;
}

.ad-notice {
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    color: #e2e8f0;
}

.split-section {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

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

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.split-section:nth-child(even) {
    flex-direction: row-reverse;
}

h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 800;
}

h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2d3748;
    font-weight: 600;
}

p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.cta-button {
    display: inline-block;
    background: #2c5282;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.cta-button:hover {
    background: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 60px;
    background: #f7fafc;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5282;
    margin: 20px 0;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

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

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2c5282;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 60px 40px 30px;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 25px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

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

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

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

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

.accept-cookies {
    background: #2c5282;
    color: #ffffff;
}

.accept-cookies:hover {
    background: #1a365d;
}

.reject-cookies {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.reject-cookies:hover {
    background: rgba(255,255,255,0.1);
}

.team-section {
    padding: 80px 60px;
    background: #ffffff;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.stats-section {
    display: flex;
    gap: 30px;
    padding: 60px;
    background: #2c5282;
    color: #ffffff;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

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

.contact-info {
    background: #f7fafc;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item strong {
    display: block;
    margin-bottom: 8px;
    color: #1a202c;
    font-size: 16px;
}

.info-item p {
    margin-bottom: 0;
}

.disclaimer {
    background: #fff5e6;
    border-left: 4px solid #f6ad55;
    padding: 25px;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #744210;
}

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

.legal-content h2 {
    margin-top: 40px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

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

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

.checkmark {
    width: 80px;
    height: 80px;
    background: #48bb78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: #ffffff;
}

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

    .split-content {
        padding: 50px 30px;
    }

    .split-image {
        min-height: 350px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

    .services-grid {
        padding: 50px 30px;
    }

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

    .stats-section {
        flex-direction: column;
        padding: 40px 30px;
    }

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

    .header-content {
        padding: 15px 20px;
    }

    nav {
        gap: 20px;
        font-size: 14px;
    }
}
