* {
    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;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 10px 30px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-cookie:hover {
    background-color: #1d4ed8;
}

.btn-cookie-alt {
    padding: 10px 30px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-cookie-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.nav-disclosure {
    font-size: 13px;
    color: #666;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #2563eb;
}

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

.hero-content {
    flex: 1;
    padding: 60px;
    background-color: #f8fafc;
}

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

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

.hero-image {
    flex: 1;
    background-color: #e0e7ff;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2563eb;
    text-decoration: none;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #fff;
}

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.intro-left {
    flex: 1;
    background-color: #f1f5f9;
}

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

.intro-right {
    flex: 1;
}

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

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

.features-asymmetric {
    background-color: #f8fafc;
    padding: 80px 20px;
}

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

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 16px;
    color: #666;
}

.feature-accent {
    background-color: #2563eb;
    color: #fff;
}

.feature-accent h3,
.feature-accent p {
    color: #fff;
}

.services-preview {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.services-content {
    flex: 1;
}

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

.services-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.services-image {
    flex: 1;
    background-color: #dbeafe;
}

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

.form-section {
    background-color: #f8fafc;
    padding: 80px 20px;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.form-container {
    flex: 1;
}

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

.form-container p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

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

.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 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
}

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

.form-image {
    flex: 1;
    background-color: #e0e7ff;
}

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

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

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

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

.testimonial {
    flex: 1 1 calc(33.333% - 27px);
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 16px;
    color: #333;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

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

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

.footer-column {
    flex: 1 1 200px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
}

.footer-column a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

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

.services-list h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.services-list > p {
    font-size: 20px;
    margin-bottom: 60px;
    color: #555;
}

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

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #f1f5f9;
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-details .price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.about-hero {
    background-color: #f8fafc;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background-color: #dbeafe;
}

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

.contact-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-container h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

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

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

.contact-info strong {
    color: #1a1a1a;
}

.thanks-container {
    max-width: 800px;
    margin: 120px auto;
    padding: 60px;
    text-align: center;
    background-color: #f8fafc;
    border-radius: 12px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2563eb;
}

.thanks-container p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #555;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 14px;
    margin-bottom: 40px;
    color: #666;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 20px;
    margin-left: 20px;
    color: #555;
}

.legal-container ul li {
    margin-bottom: 8px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-section,
    .services-preview,
    .form-section,
    .about-split,
    .service-item {
        flex-direction: column;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

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

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

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

    .testimonials {
        flex-direction: column;
    }

    .testimonial {
        flex: 1 1 100%;
    }
}