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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #7c3aed;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #6d28d9;
}

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

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #7c3aed;
}

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

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

.nav-links a:hover {
    color: #7c3aed;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a202c;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 35px;
}

.hero-right {
    flex: 1;
    background-color: #e5e7eb;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #7c3aed;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.intro-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a202c;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.split-feature {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    gap: 80px;
    padding: 0 40px;
}

.feature-image {
    flex: 1;
    background-color: #e5e7eb;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a202c;
}

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

.services-grid {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a202c;
}

.section-header p {
    font-size: 20px;
    color: #4a5568;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 27px);
    min-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a202c;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 25px 20px;
}

.service-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #7c3aed;
    margin: 20px 25px;
}

.service-card .btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #7c3aed;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card .btn-select:hover {
    background-color: #6d28d9;
}

.service-card.selected {
    border: 3px solid #7c3aed;
}

.trust-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.trust-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.trust-points {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #7c3aed;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a202c;
}

.form-intro {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    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: #7c3aed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #7c3aed;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #78350f;
}

.main-footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-col p {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

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

.footer-col ul li a:hover {
    color: #7c3aed;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    color: #cbd5e0;
    font-size: 14px;
}

.about-hero {
    background-color: #f8f9fa;
    padding: 100px 40px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a202c;
}

.about-hero p {
    font-size: 20px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a202c;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
}

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.value-item {
    flex: 1;
    text-align: center;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #7c3aed;
}

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

.contact-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-grid {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a202c;
}

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

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #7c3aed;
}

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

.contact-map {
    flex: 1;
    background-color: #e5e7eb;
    min-height: 500px;
    border-radius: 8px;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #4a5568;
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #7c3aed;
}

.thanks-container p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-container .btn-primary {
    margin-top: 30px;
}

@media (max-width: 968px) {
    .hero-split,
    .split-feature,
    .trust-points,
    .contact-grid,
    .footer-content,
    .values-grid {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 15px;
    }

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

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