* {
    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-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a5568;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #e0e7ed;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 35px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: #e0e7ed;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

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

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-preview {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    padding: 25px 25px 10px;
    font-size: 24px;
    color: #1a252f;
}

.service-card p {
    padding: 0 25px 15px;
    color: #4a5568;
    font-size: 16px;
}

.service-card .price {
    display: block;
    padding: 0 25px 25px;
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

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

.form-info {
    flex: 1;
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.form-info p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.benefits-list {
    list-style: none;
    margin-top: 40px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 18px;
}

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

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-split {
    display: flex;
    min-height: 500px;
}

.trust-split.reverse {
    flex-direction: row-reverse;
}

.trust-image {
    flex: 1;
    background-color: #e0e7ed;
    overflow: hidden;
}

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

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

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

.trust-content p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #4a5568;
}

.stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 14px;
    color: #6c757d;
    max-width: 100px;
}

.site-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 15px;
    opacity: 0.8;
}

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

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

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.7;
}

.disclaimer {
    font-size: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    padding: 25px 30px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a5568;
}

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

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

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

.btn-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

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

.page-header-split {
    display: flex;
    min-height: 400px;
    background-color: #2c3e50;
}

.header-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.header-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 20px;
    opacity: 0.9;
}

.header-image {
    flex: 1;
    background-color: #1a252f;
    overflow: hidden;
}

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

.about-story-split {
    display: flex;
    min-height: 500px;
}

.story-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.story-image {
    flex: 1;
    background-color: #e0e7ed;
    overflow: hidden;
}

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

.values-split {
    display: flex;
    min-height: 500px;
}

.values-split.reverse {
    flex-direction: row-reverse;
}

.values-image {
    flex: 1;
    background-color: #e0e7ed;
    overflow: hidden;
}

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

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

.values-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a252f;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 15px 0;
    font-size: 17px;
    color: #4a5568;
}

.values-list li strong {
    color: #2c3e50;
}

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

.process-content {
    flex: 1;
    padding: 80px 60px;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a252f;
}

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

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    min-width: 50px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step p {
    font-size: 16px;
    color: #4a5568;
}

.process-image {
    flex: 1;
    background-color: #e0e7ed;
    overflow: hidden;
}

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

.cta-full {
    padding: 100px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-full h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-full p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a5568;
}

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

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

.page-intro p {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e0e7ed;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

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

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

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #e0e7ed;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

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

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.contact-info p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #4a5568;
}

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

.info-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a5568;
}

.contact-map {
    flex: 1;
    background-color: #e0e7ed;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.thanks-container {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a252f;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

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

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

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

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .page-header-split,
    .about-story-split,
    .values-split,
    .process-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }

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