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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

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

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: #cbd5e1;
}

.hero-image {
    flex: 1;
    background-color: #e2e8f0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1d4ed8;
}

.value-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

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

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #475569;
}

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

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

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

.benefits-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #334155;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

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

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

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

.section-header-center p {
    font-size: 19px;
    color: #64748b;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
    height: 240px;
    background-color: #e2e8f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 32px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1e293b;
    font-weight: 600;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 500px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #334155;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.trust-section {
    padding: 100px 40px;
    background-color: #f8fafc;
}

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

.container-narrow h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1e293b;
    font-weight: 700;
}

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

.testimonial {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
    font-style: italic;
}

.author {
    font-size: 15px;
    color: #64748b;
    font-weight: 600;
}

.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 40px 30px;
}

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

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

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 30px;
}

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

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #475569;
    color: #ffffff;
}

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

.page-hero {
    background-color: #1e293b;
    padding: 80px 40px;
    text-align: center;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-content-center p {
    font-size: 20px;
    color: #cbd5e1;
}

.about-story {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1e293b;
    font-weight: 600;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
}

.team-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.cta-section {
    padding: 100px 40px;
    background-color: #f8fafc;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1e293b;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

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

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

.services-detail {
    padding: 40px 40px 80px;
}

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

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

.service-features li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 17px;
    color: #334155;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2563eb;
    font-size: 24px;
    line-height: 1;
}

.price-box {
    margin-top: 30px;
    background-color: #eff6ff;
    padding: 24px;
    border-radius: 8px;
}

.price-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

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

.contact-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 600;
}

.info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
}

.info-section {
    padding: 80px 40px;
    background-color: #f8fafc;
}

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

.info-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.button-center {
    text-align: center;
    margin-top: 40px;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8fafc;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1e293b;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 600;
}

.thanks-steps {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-steps li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #475569;
}

.thanks-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

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

.selected-service {
    font-size: 17px;
    color: #334155;
    background-color: #eff6ff;
    padding: 16px;
    border-radius: 6px;
}

.selected-service strong {
    color: #2563eb;
}

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

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

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

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

.legal-intro {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
    line-height: 1.7;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 16px;
    color: #1e293b;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #334155;
    font-weight: 600;
}

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

.legal-container ul {
    margin: 20px 0 20px 24px;
}

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

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

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

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

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

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

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }

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

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

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