* {
    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 16px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

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

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

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

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

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

.nav-menu a:hover {
    color: #4a90e2;
}

.hero-card {
    display: flex;
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
    gap: 48px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.hero-image {
    flex: 1;
    background-color: #f4f6f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #357abd;
}

.intro-cards {
    background-color: #f8f9fb;
    padding: 64px 0;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.card-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-icon {
    color: #4a90e2;
    margin-bottom: 16px;
}

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

.info-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
    font-weight: 700;
}

.problem-section p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.8;
}

.insight-image {
    margin: 48px 0;
    background-color: #f4f6f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.solution-cards {
    background-color: #ffffff;
    padding: 80px 0;
}

.solution-cards h2 {
    font-size: 42px;
    margin-bottom: 56px;
    text-align: center;
    color: #1a1a2e;
    font-weight: 800;
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a2e;
    font-weight: 700;
}

.service-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #4a90e2;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2d2d44;
}

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

.container-form {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

.form-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.form-card p {
    color: #5a6c7d;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f7fafc;
    color: #2d3748;
    cursor: default;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 8px;
}

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

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

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

.testimonial-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fb;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

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

.testimonial-author {
    font-weight: 600;
    color: #4a5568;
    font-size: 14px;
}

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 56px 0 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid #2d2d44;
    margin-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: #8a8a8a;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 13px;
    color: #707070;
    margin-top: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    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: 24px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #357abd;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
}

.page-header {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 64px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-header p {
    font-size: 18px;
    color: #d0d0d0;
}

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

.content-split {
    display: flex;
    gap: 56px;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.content-image {
    flex: 1;
    background-color: #f4f6f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    background-color: #f8f9fb;
    padding: 80px 0;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.team-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a2e;
    font-weight: 700;
}

.team-section p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.8;
}

.team-image {
    margin: 48px 0;
    background-color: #f4f6f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-section {
    background-color: #f0f4f8;
    padding: 80px 0;
}

.cta-card-large {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 64px 48px;
    border-radius: 12px;
    text-align: center;
}

.cta-card-large h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-card-large p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #d0d0d0;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #357abd;
}

.services-detailed {
    padding: 64px 0;
}

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

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

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

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

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

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

.service-features li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    color: #2d3748;
    line-height: 1.7;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 24px 0;
}

.price-label {
    font-size: 15px;
    color: #5a6c7d;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: #4a90e2;
}

.service-detail-image {
    flex: 1;
    background-color: #f4f6f8;
    border-radius: 8px;
    overflow: hidden;
    max-width: 480px;
}

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

.contact-prompt {
    background-color: #f8f9fb;
    padding: 64px 0;
}

.prompt-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.prompt-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.prompt-card p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.contact-layout {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 32px;
}

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

.info-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #f4f6f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.location-section {
    background-color: #f8f9fb;
    padding: 64px 0;
}

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

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

.thanks-section {
    padding: 80px 0;
    background-color: #f8f9fb;
}

.thanks-card {
    max-width: 720px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 64px 48px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.success-icon {
    color: #48bb78;
    margin-bottom: 24px;
}

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

.thanks-card p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #ebf8ff;
    padding: 16px 24px;
    border-radius: 6px;
    margin: 24px 0;
    font-weight: 600;
    color: #2c5282;
    border-left: 4px solid #4a90e2;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #357abd;
}

.btn-secondary {
    padding: 14px 32px;
    background-color: #e2e8f0;
    color: #2d3748;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.next-steps {
    padding: 80px 0;
}

.next-steps h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a2e;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 240px;
    padding: 32px;
    background-color: #f8f9fb;
    border-radius: 8px;
    text-align: center;
}

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

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

.step-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-intro {
    font-size: 15px;
    color: #718096;
    margin-bottom: 32px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a2e;
    font-weight: 800;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a2e;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-page ul {
    margin: 16px 0 24px 24px;
    color: #4a5568;
    line-height: 1.8;
}

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

.legal-page strong {
    color: #2d3748;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-card,
    .content-split,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

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

    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }

    .card-grid,
    .services-grid,
    .testimonial-cards,
    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}
