* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #60a5fa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 2px solid var(--border-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--primary-color);
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

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

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

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-right {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

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

.content-split.reverse .split-right {
    background-color: var(--bg-white);
}

.content-split h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-split p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.services-intro {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.services-intro h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 24px 16px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 24px;
}

.service-card .btn-select {
    margin: 0 24px 24px;
}

.form-section {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-primary,
.btn-secondary,
.btn-select,
.btn-text {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
}

.btn-select {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-select:hover {
    background-color: var(--secondary-color);
}

.btn-text {
    padding: 0;
    background: none;
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-text:hover {
    color: var(--secondary-color);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 40px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-column p,
.footer-column ul {
    font-size: 14px;
    color: var(--bg-light);
    line-height: 1.8;
}

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

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

.footer-column a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--bg-light);
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.page-header {
    padding: 80px 60px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: var(--text-light);
}

.values-section {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 15px;
    color: var(--text-light);
}

.cta-section {
    padding: 100px 60px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--bg-light);
}

.service-detail {
    padding: 60px 40px;
}

.service-detail.alternate {
    background-color: var(--bg-light);
}

.service-detail-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

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

.detail-left,
.detail-right {
    flex: 1;
}

.detail-left h2,
.detail-right h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.detail-left h3,
.detail-right h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--primary-color);
}

.detail-left ul,
.detail-right ul {
    margin-left: 20px;
    margin-bottom: 24px;
}

.detail-left ul li,
.detail-right ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.detail-left img,
.detail-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 0 24px;
}

.process-section {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

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

.process-step {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-content {
    padding: 60px 40px;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.map-section {
    padding: 60px 40px;
    background-color: var(--bg-light);
}

.map-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    flex: 1;
    min-width: 320px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
    min-height: 400px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--success-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-confirmation {
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--bg-white);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-dark);
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 32px;
    text-align: center;
}

.step-item {
    flex: 1;
    min-width: 200px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 14px;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.while-you-wait {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.while-you-wait h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.resources-grid {
    display: flex;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.resource-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.resource-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.resource-item p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.legal-content .last-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0 16px 32px;
}

.legal-content ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .content-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .content-split.reverse {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .hero-left h1,
    .page-header h1 {
        font-size: 36px;
    }

    .services-grid,
    .values-grid,
    .process-grid,
    .faq-grid,
    .resources-grid {
        flex-direction: column;
    }

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

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