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

.main-nav {
    background-color: #1a1a2e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-disclosure {
    background-color: #4a90e2;
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.hero-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    position: relative;
}

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

.cta-primary {
    display: inline-block;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #4a90e2;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #4a90e2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #4a90e2;
    color: #ffffff;
}

.intro-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.services-preview {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #5a6c7d;
}

.service-form {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a1a2e;
}

.service-card p {
    padding: 0 1.5rem;
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.price {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a90e2;
}

.radio-label {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

.radio-label span {
    color: #2c3e50;
    font-weight: 500;
}

.form-section {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.form-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    color: #1a1a2e;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.form-grid input {
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.cta-submit {
    width: 100%;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.process-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.process-image {
    flex: 1;
    overflow: hidden;
}

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

.process-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a90e2;
    min-width: 50px;
}

.step p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.testimonials-section {
    background-color: #1a1a2e;
    padding: 5rem 2rem;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-flex {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #252547;
    padding: 2rem;
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #4a90e2;
    font-size: 0.95rem;
}

.main-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-block h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-block p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-block a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #4a90e2;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #252547;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #d1d5db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c2c52;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.cookie-btn.reject:hover {
    background-color: #ffffff;
    color: #1a1a2e;
}

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c2c52 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

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

.hero-content-center h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content-center p {
    font-size: 1.2rem;
    color: #d1d5db;
}

.about-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.about-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

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

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

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

.team-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.team-image {
    flex: 1;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.team-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
    margin-bottom: 4rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.8rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    margin-top: 1.5rem;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

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

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    gap: 4rem;
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.contact-block p {
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.info-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.info-content-center h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legal-page {
    background-color: #ffffff;
    padding: 3rem 2rem;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-content a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #357abd;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .process-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .process-content,
    .about-text,
    .team-text,
    .service-detail-content {
        padding: 3rem 2rem;
    }

    .hero-content h1,
    .hero-content-center h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .testimonial {
        flex: 1 1 100%;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}