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

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

.container-fluid {
    max-width: 100%;
    padding: 0 40px;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.ad-notice {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.ad-label {
    background-color: #f8f9fa;
    color: #6c757d;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

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

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

.nav a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 36px;
    line-height: 1.7;
}

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

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

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

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #3498db;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a252f;
    line-height: 1.3;
}

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

.image-block {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-overview {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
}

.section-header-centered p {
    font-size: 18px;
    color: #6c757d;
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a252f;
}

.service-content p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.form-wrapper-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.form-left p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 32px;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

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

.form-right {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    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: #3498db;
}

.trust-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.process-blocks {
    display: flex;
    gap: 32px;
}

.process-item {
    flex: 1;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.process-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a252f;
}

.process-item p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

.footer-col ul li a:hover {
    color: #3498db;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.page-header {
    background-color: #f8f9fa;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a252f;
    margin-bottom: 16px;
}

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

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

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a252f;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    margin-top: 32px;
}

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

.content-section ul,
.content-section ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-detail-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.service-detail-content .price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-split {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-grid {
    display: flex;
    gap: 32px;
    margin-top: 60px;
}

.value-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 36px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a252f;
}

.value-item p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

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

.contact-info-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-info-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-info-item p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.thanks-container h1 {
    font-size: 44px;
    color: #27ae60;
    margin-bottom: 24px;
}

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

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

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

    .split-layout {
        flex-direction: column;
        gap: 40px;
    }

    .form-wrapper-split {
        flex-direction: column;
        gap: 40px;
    }

    .process-blocks {
        flex-wrap: wrap;
    }

    .process-item {
        flex: 1 1 calc(50% - 16px);
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 30px);
    }

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

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .about-split {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-grid {
        flex-direction: column;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .ad-notice {
        position: static;
        transform: none;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

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

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

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

    .page-header h1 {
        font-size: 36px;
    }
}