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

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 64px;
    background-color: #f8f9fa;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #5a6c7d;
    max-width: 500px;
}

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

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

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

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

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

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

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

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

.intro-text {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.benefits-block {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.benefits-block h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 56px;
    color: #1a252f;
}

.benefits-grid {
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

.benefit-card {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

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

.benefit-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.process-text {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

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

.process-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.services-preview {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.services-cards {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.service-item {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #dfe6e9;
}

.service-item h3 {
    font-size: 22px;
    padding: 24px 24px 8px 24px;
    color: #1a252f;
}

.service-item p {
    padding: 0 24px;
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.service-item .price {
    padding: 16px 24px 24px 24px;
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
}

.services-link-block {
    text-align: center;
}

.secondary-link {
    display: inline-block;
    color: #3498db;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #3498db;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.secondary-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

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

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

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

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

.trust-text {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

blockquote {
    margin-bottom: 32px;
    padding-left: 24px;
    border-left: 4px solid #3498db;
}

blockquote p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.6;
    font-style: italic;
}

blockquote cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.form-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
}

.form-intro p {
    font-size: 18px;
    color: #5a6c7d;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 48px;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    background-color: #ffffff;
    color: #2c3e50;
}

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

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

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

.disclaimer-section {
    padding: 48px 24px;
    background-color: #ecf0f1;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 64px 24px 24px 24px;
}

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

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

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

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

.footer-column ul li {
    margin-bottom: 8px;
}

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

.footer-column ul li a:hover {
    color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .process-split,
    .trust-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .process-text,
    .trust-text {
        padding: 32px 24px;
    }

    .hero-image,
    .intro-image,
    .process-image,
    .trust-image {
        min-height: 300px;
    }

    .benefits-grid,
    .services-cards {
        flex-direction: column;
    }

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

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

    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }
}