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

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand a {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 11px;
    color: #888;
    background-color: #f8f9fa;
    padding: 4px 12px;
    border-radius: 4px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

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

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

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

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

.hero-content {
    max-width: 540px;
}

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

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    border: 2px solid #3498db;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.split-container {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.split-container-reverse {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    min-height: 500px;
}

.split-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
}

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

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

.why-section {
    background-color: #f8f9fa;
}

.services-showcase {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

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

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image {
    height: 240px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service-select {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service-select:hover {
    background-color: #2980b9;
}

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

.contact-form {
    max-width: 100%;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.approach-item {
    flex: 1 1 calc(50% - 20px);
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff8e1;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 300px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 600;
}

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    flex-wrap: wrap;
}

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

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

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

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #229954;
}

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

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero .lead {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-story {
    padding: 100px 0;
}

.values-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    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);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.expertise-section {
    padding: 100px 0;
}

.expertise-list {
    list-style: none;
    padding-left: 0;
}

.expertise-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.process-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.process-step {
    flex: 1 1 calc(50% - 20px);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.cta-section {
    padding: 100px 0;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #3498db;
}

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

.services-detailed {
    background-color: #ffffff;
}

.service-detail-block {
    padding: 80px 0;
}

.service-detail-block.alt {
    background-color: #f8f9fa;
}

.service-features {
    margin: 30px 0;
}

.service-features h4 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.service-price-block {
    margin: 30px 0;
    padding: 20px;
    background-color: #f0f8ff;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.price-label {
    font-size: 15px;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

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

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3498db;
    font-weight: 600;
}

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

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

.info-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.info-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-confirmation {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

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

.thanks-submessage {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
}

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

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

.next-steps-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.step-item {
    flex: 1 1 calc(33.333% - 27px);
    text-align: center;
}

.step-item .step-number {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    opacity: 1;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.legal-page {
    padding: 60px 0 100px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.update-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

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

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.legal-table th,
.legal-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 14px;
}

.legal-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

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

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

    .split-image,
    .split-content {
        width: 100%;
    }

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

    .approach-item {
        flex: 1 1 100%;
    }

    .process-step {
        flex: 1 1 100%;
    }

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

    .step-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .split-content {
        padding: 60px 30px;
    }

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

    .section-header-center h2 {
        font-size: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .footer-col {
        flex: 1 1 100%;
    }

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