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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #0066cc;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f8f9fa;
}

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

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

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

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

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

.split-intro {
    padding: 80px 0;
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image {
    flex: 1;
    background-color: #e8eef3;
}

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

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

.service-image {
    width: 100%;
    height: 240px;
    background-color: #e8eef3;
}

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 15px;
    color: #555;
}

.service-price {
    padding: 0 24px 16px;
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

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

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

.split-process {
    padding: 80px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-text p {
    font-size: 15px;
    color: #555;
}

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

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

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

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

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

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

.btn-submit:hover {
    background-color: #0052a3;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom .disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

.btn-accept:hover {
    background-color: #0052a3;
}

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

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

.page-hero {
    background-color: #f8f9fa;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 20px;
    color: #666;
}

.split-about {
    padding: 80px 0;
}

.expertise-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.expertise-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.expertise-grid {
    display: flex;
    gap: 30px;
}

.expertise-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.expertise-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.expertise-card p {
    font-size: 15px;
    color: #555;
}

.split-values {
    padding: 80px 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #0066cc;
}

.value-item p {
    font-size: 15px;
    color: #555;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.team-info {
    max-width: 800px;
    margin: 0 auto;
}

.team-info p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #0066cc;
    color: #fff;
}

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

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

.cta-section .cta-primary {
    background-color: #fff;
    color: #0066cc;
}

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

.services-detail-section {
    padding: 40px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 24px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    color: #555;
}

.contact-section {
    padding: 60px 0;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #555;
}

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0066cc;
}

.contact-item p {
    font-size: 15px;
    color: #555;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-note p {
    font-size: 14px;
    color: #555;
}

.contact-image {
    flex: 1;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.service-confirmation {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #0066cc;
}

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

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.legal-section {
    padding: 60px 0;
}

.legal-section h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #333;
}

.legal-content p {
    font-size: 15px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-content ul li {
    margin-bottom: 8px;
    color: #555;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    margin-top: 20px;
}

.cookie-table h4 {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

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

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

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

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

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

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

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

    .form-row {
        flex-direction: column;
    }
}