* {
    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: #333;
    background-color: #fff;
}

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

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-right a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    gap: 60px;
    padding: 80px 40px;
    background-color: #fafbfc;
}

.hero-left {
    flex: 1;
    padding-right: 40px;
}

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

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555;
}

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

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

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

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

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

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

.intro-text {
    padding: 80px 40px;
    background-color: #fff;
}

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

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 40px;
    background-color: #f9f9f9;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-image-wrapper {
    width: 100%;
    height: 240px;
    background-color: #e8f4f8;
}

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

.service-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #666;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: auto;
    margin-bottom: 16px;
}

.btn-select {
    padding: 12px 24px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 80px 40px;
    background-color: #fff;
}

.form-container-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.form-text {
    flex: 1;
}

.form-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-text p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #555;
}

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

.benefits-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.about-preview {
    padding: 80px 40px;
    background-color: #fafbfc;
    text-align: center;
}

.about-preview h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-preview p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #555;
}

.link-underline {
    color: #3498db;
    text-decoration: underline;
    font-size: 16px;
    transition: color 0.3s ease;
}

.link-underline:hover {
    color: #2980b9;
}

.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 40px 20px;
}

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

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

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

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

.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: #fff;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

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

.page-header {
    padding: 80px 40px 40px;
    background-color: #fafbfc;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #555;
}

.about-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 40px;
}

.about-image {
    flex: 1;
    background-color: #e8f4f8;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.values-section {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.process-section {
    padding: 80px 40px;
    background-color: #fff;
}

.process-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

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

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    min-width: 80px;
}

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

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.cta-section-about {
    padding: 80px 40px;
    background-color: #3498db;
    text-align: center;
    color: #fff;
}

.cta-section-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section-about p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.services-detailed {
    padding: 60px 40px;
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-block-image {
    flex: 1;
    background-color: #e8f4f8;
}

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

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

.service-block-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 0;
}

.btn-select-large {
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cta-form-services {
    padding: 80px 40px;
    background-color: #fafbfc;
    text-align: center;
}

.cta-form-services h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-form-services p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #555;
}

.contact-layout {
    display: flex;
    gap: 60px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-box {
    flex: 1;
}

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 32px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e8f4f8;
}

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

.contact-additional {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #fafbfc;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

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

.thanks-next {
    margin: 40px 0;
    text-align: left;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next ul {
    list-style: none;
    padding: 0;
}

.thanks-next ul li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.thanks-next ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 18px;
}

.legal-page {
    padding: 60px 40px 80px;
    background-color: #fff;
}

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

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

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

.legal-page a:hover {
    color: #2980b9;
}

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

    .service-block.reverse {
        flex-direction: column;
    }

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

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

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

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

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

    .footer-content {
        flex-direction: column;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}