* {
    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: #333;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.btn-primary {
    background: #4a9eff;
    color: #fff;
}

.btn-primary:hover {
    background: #3a8eef;
}

.btn-secondary {
    background: #555;
    color: #fff;
}

.btn-secondary:hover {
    background: #444;
}

.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    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;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2a4858;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    background: #f4f4f4;
    padding: 4px 12px;
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: #4a9eff;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #f9f9f9;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.btn-cta {
    display: inline-block;
    padding: 15px 35px;
    background: #2a4858;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: #1e3540;
}

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

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

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.intro-content {
    max-width: 500px;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.services-preview {
    padding: 80px 0;
    background: #fff;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2a4858;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 30px;
    background: #4a9eff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #3a8eef;
}

.form-split {
    display: flex;
    min-height: 700px;
}

.form-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #fff;
}

.form-content {
    max-width: 500px;
    width: 100%;
}

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

.form-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #2a4858;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1e3540;
}

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

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

.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

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

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

.testimonial {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #4a9eff;
    border-radius: 4px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2a4858;
}

.disclaimer-section {
    padding: 40px 0;
    background: #f4f4f4;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.8;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col a:hover {
    color: #4a9eff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

.page-header {
    background: linear-gradient(135deg, #2a4858 0%, #1e3540 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #ddd;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a4858;
}

.content-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

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

.content-section li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

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

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

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

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.contact-info strong {
    color: #2a4858;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks-box {
    max-width: 600px;
    padding: 60px 40px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2a4858;
}

.thanks-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

.thanks-box .btn-cta {
    display: inline-block;
}

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

    .hero-left,
    .hero-right,
    .intro-left,
    .intro-right,
    .form-left,
    .form-right {
        min-height: 400px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .testimonials-grid {
        flex-direction: column;
    }

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

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

    .nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .page-header h1 {
        font-size: 36px;
    }
}