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

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 1000;
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

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

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

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #0f172a;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #64748b;
    border: 1px solid #cbd5e1;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

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

.hero-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-text p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.cta-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    flex: 1.5;
    padding: 4rem;
}

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

.intro-left p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.intro-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.stats-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.services-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2rem;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #0f172a;
}

.service-row {
    display: flex;
    margin-bottom: 3rem;
    gap: 0;
}

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

.service-image {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-content p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0;
}

.btn-select {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s;
}

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

.cta-section {
    background-color: #1e293b;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.selected-service-display {
    background-color: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 1rem;
    margin-bottom: 2rem;
    display: none;
}

.selected-service-display.show {
    display: block;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

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

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

.main-footer {
    background-color: #0f172a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    color: #94a3b8;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
}

.disclaimer {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.page-hero {
    background-color: #1e293b;
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-content-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.about-text {
    flex: 1.5;
    padding: 4rem;
}

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

.about-text p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

.values-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.value-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.value-content {
    flex: 1;
    padding: 2rem;
    background-color: #f8fafc;
    border-left: 4px solid #2563eb;
}

.value-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.value-content p {
    color: #475569;
    line-height: 1.8;
}

.team-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.team-member p {
    color: #475569;
}

.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2rem;
}

.service-detail {
    display: flex;
    margin-bottom: 4rem;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1.5;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: #0f172a;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    color: #475569;
    margin-bottom: 0.5rem;
}

.service-detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    margin: 2rem 0 1.5rem;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.contact-info {
    flex: 1;
    padding: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.contact-item p {
    color: #475569;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
}

.map-placeholder p {
    text-align: center;
    color: #64748b;
    font-size: 1.125rem;
}

.contact-additional {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.contact-additional h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.help-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.help-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.help-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.help-item p {
    color: #475569;
    line-height: 1.8;
}

.thanks-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.thanks-content > p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: #eff6ff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-info p {
    color: #1e293b;
    line-height: 1.8;
}

.thanks-next {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step p {
    color: #475569;
    line-height: 1.8;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.legal-updated {
    color: #64748b;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.legal-page p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-page li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1d4ed8;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-section,
    .service-row,
    .about-content-split,
    .contact-split,
    .service-detail {
        flex-direction: column;
    }

    .service-row.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

    .hero-text h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .value-row,
    .team-grid,
    .help-options {
        flex-direction: column;
    }

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

    .thanks-cta {
        flex-direction: column;
    }
}
