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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: #48bb78;
    color: white;
}

.btn-accept:hover {
    background: #38a169;
}

.btn-reject {
    background: #e53e3e;
    color: white;
}

.btn-reject:hover {
    background: #c53030;
}

.main-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2b6cb0;
}

.ad-disclosure {
    font-size: 11px;
    color: #718096;
    padding: 4px 12px;
    background: #f7fafc;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2b6cb0;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7fafc;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero-left p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2b6cb0;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #2c5282;
}

.intro-section {
    padding: 100px 0;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a5568;
}

.image-block {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.image-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-section {
    padding: 100px 0;
    background: #f7fafc;
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1a202c;
}

.service-card p {
    padding: 0 24px 16px;
    color: #4a5568;
    font-size: 15px;
}

.price {
    padding: 0 24px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background: #2b6cb0;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #2c5282;
}

.form-section {
    padding: 100px 0;
}

.form-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.form-left p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

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

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #4a5568;
    font-size: 16px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 18px;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2b6cb0;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #2c5282;
}

.trust-section {
    padding: 100px 0;
    background: #f7fafc;
}

.split-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.main-footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-col p {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 13px;
    margin-bottom: 10px;
}

.thanks-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 16px;
    opacity: 0.95;
}

.checkmark {
    font-size: 80px;
    margin-bottom: 20px;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a202c;
}

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2b6cb0;
}

.info-item p {
    color: #4a5568;
    font-size: 16px;
}

.contact-map {
    flex: 1;
    background: #f7fafc;
    border-radius: 8px;
    min-height: 400px;
}

.about-hero {
    padding: 100px 0;
    background: #f7fafc;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    text-align: center;
    color: #1a202c;
}

.about-hero p {
    font-size: 20px;
    text-align: center;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.about-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a202c;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d3748;
}

.legal-content p {
    margin-bottom: 16px;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

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

    .split-content,
    .split-reverse,
    .form-split,
    .contact-grid,
    .about-split {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-left h1 {
        font-size: 36px;
    }
}