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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f2027;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #00a8cc;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0087a8;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f2027;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #666;
    padding: 0.5rem 1rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #00a8cc;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 5rem 5%;
    background-color: #f5f7fa;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f2027;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444;
    max-width: 500px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #00a8cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #0087a8;
    transform: translateY(-2px);
}

.intro-offset {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.intro-narrow {
    flex: 0.9;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f2027;
}

.intro-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.intro-wide {
    flex: 1.1;
    background-color: #e8eef3;
}

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

.services-grid {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-centered h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0f2027;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #666;
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    background-color: #f9f9f9;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

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

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0f2027;
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a8cc;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 1rem 2rem;
    background-color: #0f2027;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #1a3a4a;
    transform: translateX(5px);
}

.testimonial-full {
    padding: 5rem 5%;
    background-color: #0f2027;
    color: #ffffff;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.8;
}

.form-section-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background-color: #f5f7fa;
}

.form-left {
    flex: 0.8;
}

.form-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #0f2027;
}

.form-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

.form-right {
    flex: 1.2;
    background-color: #ffffff;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0f2027;
}

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

.selected-service-display {
    padding: 1rem;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    font-weight: 600;
    color: #00a8cc;
}

.selected-service-display.empty {
    color: #999;
    font-weight: 400;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #00a8cc;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0087a8;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.trust-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    padding: 2rem;
    background-color: #f5f7fa;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f2027;
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.footer-split {
    display: flex;
    padding: 4rem 5%;
    background-color: #0f2027;
    color: #ffffff;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-column a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.disclaimer-footer {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    opacity: 0.7 !important;
    margin-top: 1rem;
}

.contact-grid {
    display: flex;
    padding: 5rem 5%;
    gap: 5rem;
}

.contact-left {
    flex: 1;
}

.contact-left h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #0f2027;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0f2027;
}

.contact-info-item p {
    font-size: 1.1rem;
    color: #444;
}

.contact-right {
    flex: 1;
    background-color: #f5f7fa;
}

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

.about-header {
    padding: 5rem 5%;
    background-color: #0f2027;
    color: #ffffff;
    text-align: center;
}

.about-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-header p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f2027;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.about-image {
    flex: 0.8;
    background-color: #ddd;
}

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

.legal-page {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #0f2027;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #0f2027;
}

.legal-page p,
.legal-page li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.thanks-container {
    display: flex;
    min-height: 80vh;
    align-items: center;
    justify-content: center;
    padding: 3rem 5%;
    background-color: #f5f7fa;
}

.thanks-box {
    max-width: 700px;
    background-color: #ffffff;
    padding: 4rem;
    text-align: center;
}

.thanks-box h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #00a8cc;
}

.thanks-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

.thanks-box .cta-primary {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-split,
    .intro-offset,
    .service-card-split,
    .form-section-split,
    .contact-grid,
    .about-content-split,
    .footer-split {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

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

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