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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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-buttons {
    display: flex;
    gap: 10px;
}

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

.cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #6b7280;
    font-style: italic;
}

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

.hero-left {
    flex: 1;
}

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

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4b5563;
}

.hero-right {
    flex: 1;
    background-color: #f3f4f6;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #2563eb;
    text-decoration: none;
    border: 2px solid #2563eb;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.intro-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.intro-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4b5563;
}

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

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

.feature-image {
    flex: 1;
    background-color: #f3f4f6;
}

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

.feature-content {
    flex: 1;
}

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

.feature-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4b5563;
}

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

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 16px);
    max-width: 500px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.service-card h4 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 20px 12px;
    color: #4b5563;
    font-size: 15px;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin: 16px 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1d4ed8;
}

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

.testimonial-split {
    display: flex;
    gap: 40px;
}

.testimonial-content {
    flex: 1;
    padding: 40px;
    background-color: #f9fafb;
    border-left: 4px solid #2563eb;
}

.testimonial-content blockquote {
    font-style: normal;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.testimonial-content cite {
    font-size: 14px;
    color: #6b7280;
    font-style: normal;
}

.cta-section {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #1e3a8a;
}

.cta-section .cta-primary:hover {
    background-color: #f3f4f6;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 16px;
    color: #4b5563;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

.disclaimer {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
}

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

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

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section p {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 0;
    border-top: 1px solid #374151;
    text-align: center;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .hero-split,
    .split-feature,
    .form-split,
    .testimonial-split {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

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