* {
    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;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    background-color: #1a1a2e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f5f7fa;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #555;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8ecf0;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 38px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #0052a3;
}

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

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 700;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.split-image {
    flex: 1;
    position: relative;
    background-color: #e8ecf0;
}

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

.inline-cta {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    margin-top: 15px;
    transition: color 0.3s;
}

.inline-cta:hover {
    color: #0052a3;
}

.services-preview {
    padding: 100px 40px;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a2e;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 25px 20px;
    color: #666;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 25px 20px;
}

.service-select {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px 24px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #0052a3;
}

.form-section {
    padding: 100px 40px;
    background-color: #fff;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.form-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 18px;
}

.form-wrapper {
    flex: 1;
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    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: #0066cc;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f0f4f8;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 600;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    padding: 25px 40px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background-color: #0066cc;
    color: #fff;
}

.cookie-btn.reject {
    background-color: #555;
    color: #fff;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.page-header-split {
    display: flex;
    min-height: 400px;
    background-color: #f5f7fa;
}

.header-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.header-content h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.header-content p {
    font-size: 18px;
    color: #666;
}

.header-image {
    flex: 1;
    position: relative;
    background-color: #e8ecf0;
}

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

.services-detailed {
    padding: 60px 40px;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9fafb;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.feature-list li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #0066cc;
    font-size: 22px;
    line-height: 1;
}

.price-box {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin: 25px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    display: inline-block;
}

.service-detail-image {
    flex: 1;
    position: relative;
    background-color: #e8ecf0;
}

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

.cta-section-split {
    padding: 80px 40px;
    background-color: #1a1a2e;
}

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

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ccc;
}

.values-section {
    padding: 100px 40px;
    background-color: #fff;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

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

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background-color: #fff;
}

.contact-info h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.contact-info > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-item .note {
    margin-top: 10px;
    font-size: 14px;
    color: #0066cc;
    font-weight: 500;
}

.contact-image {
    flex: 1;
    position: relative;
    background-color: #e8ecf0;
}

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

.location-section {
    padding: 80px 40px;
    background-color: #f9fafb;
}

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

.location-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.location-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f9fafb;
}

.thanks-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.service-confirmation {
    background-color: #e8f4fd;
    padding: 20px 30px;
    border-radius: 6px;
    margin-bottom: 40px;
    border-left: 4px solid #0066cc;
}

.service-confirmation p {
    font-size: 16px;
    color: #333;
}

.service-confirmation strong {
    color: #0066cc;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 600;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps ol li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 15px;
}

.secondary-button {
    display: inline-block;
    padding: 16px 38px;
    background-color: #fff;
    color: #0066cc;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #0066cc;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: #0066cc;
    color: #fff;
}

.thanks-image {
    flex: 1;
    position: relative;
    background-color: #e8ecf0;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-page {
    padding: 80px 40px;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a2e;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

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

.legal-container ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-container ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.legal-update {
    margin-top: 60px;
    font-style: italic;
    color: #999;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .page-header-split,
    .service-detail-split,
    .contact-split,
    .form-container-split,
    .thanks-container {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .footer-content {
        flex-wrap: wrap;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-content,
    .split-content,
    .header-content,
    .service-detail-content,
    .contact-info {
        padding: 40px 30px;
    }

    .hero-content h1,
    .contact-info h1 {
        font-size: 32px;
    }

    .split-content h2 {
        font-size: 28px;
    }

    .section-header h2,
    .values-section h2,
    .thanks-content h1,
    .legal-container h1 {
        font-size: 32px;
    }

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

    .services-grid {
        gap: 20px;
    }

    .form-wrapper {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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