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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.ad-disclosure {
    font-size: 11px;
    color: #6b7280;
    padding: 4px 8px;
    background-color: #f3f4f6;
    border-radius: 4px;
    margin: 0 15px;
}

.nav {
    display: flex;
    gap: 25px;
}

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #4b5563;
}

.hero {
    position: relative;
}

.hero-image {
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(29, 78, 216, 0.75));
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #2563eb;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.intro-section {
    padding: 70px 0;
    background-color: #f9fafb;
}

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1f2937;
}

.intro-card p {
    color: #6b7280;
    line-height: 1.7;
}

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

.services-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1f2937;
}

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

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

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

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1f2937;
}

.service-info p {
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
}

.btn-select-service {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
}

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

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

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1f2937;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    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: #2563eb;
}

.btn-submit {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.trust-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1f2937;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.trust-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.trust-item img {
    width: 50%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1f2937;
}

.trust-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #fef3c7;
}

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

.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 50px 0 20px;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #374151;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 16px 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;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.about-content {
    padding: 70px 0;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    text-align: center;
    color: #4b5563;
    line-height: 1.8;
}

.about-blocks {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-block {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-block img {
    width: 45%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.about-block-content {
    flex: 1;
}

.about-block-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1f2937;
}

.about-block-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.values-section {
    margin-top: 80px;
    padding: 60px 0;
    background-color: #f9fafb;
    border-radius: 12px;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1f2937;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2563eb;
}

.value-card p {
    color: #6b7280;
    line-height: 1.7;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

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

.service-detail-image {
    width: 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
    border-radius: 12px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1f2937;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.process-section {
    padding: 70px 0;
    background-color: #f9fafb;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1f2937;
}

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 30px 20px;
}

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

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f2937;
}

.process-step p {
    color: #6b7280;
    line-height: 1.6;
}

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

.contact-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1f2937;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 28px;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1f2937;
}

.contact-details p {
    color: #6b7280;
    line-height: 1.7;
}

.contact-map-block {
    flex: 1;
}

.contact-map-block img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.contact-cta {
    text-align: center;
    padding: 50px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1f2937;
}

.contact-cta p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 25px;
}

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

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

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

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1f2937;
}

.thanks-message {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
}

.thanks-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

.thanks-next {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 35px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1f2937;
}

.thanks-next ul {
    list-style: none;
}

.thanks-next ul li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 25px;
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
}

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #1f2937;
}

.last-updated {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1f2937;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #374151;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 25px;
    color: #4b5563;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 8px;
}

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

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 15px 0;
    }

    .nav.active {
        display: flex;
    }

    .header-content {
        position: relative;
    }

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

    .hero-text p {
        font-size: 16px;
    }

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

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

    .trust-item {
        flex-direction: column;
    }

    .trust-item img {
        width: 100%;
    }

    .about-block,
    .about-block.reverse {
        flex-direction: column;
    }

    .about-block img {
        width: 100%;
    }

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

    .service-detail-image {
        width: 100%;
    }

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

    .ad-disclosure {
        order: 3;
        width: 100%;
        text-align: center;
        margin: 10px 0 0 0;
    }
}