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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    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-buttons {
    display: flex;
    gap: 10px;
}

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

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

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

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

.cookie-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.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 12px;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
}

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

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

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

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background-color: #e8eef3;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.split-image {
    flex: 1;
    background-color: #f0f4f8;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

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

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.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 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: #e8eef3;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
}

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

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 20px;
}

.service-price span {
    font-size: 16px;
    font-weight: 400;
    color: #7f8c8d;
}

.select-service {
    width: 100%;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.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: #2ecc71;
    font-weight: 700;
    font-size: 18px;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #e8eef3;
}

.btn-submit {
    padding: 16px 36px;
    background-color: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 100px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    gap: 48px;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #3498db;
}

.trust-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
}

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

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

.footer-section {
    flex: 1;
}

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

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 12px;
    font-size: 14px;
    color: #bdc3c7;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #95a5a6;
    max-width: 900px;
    margin: 20px auto 0;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 36px;
    color: #2ecc71;
    margin-bottom: 24px;
}

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

.thanks-content .service-selected {
    font-weight: 600;
    color: #3498db;
}

.thanks-content .back-link {
    display: inline-block;
    margin-top: 32px;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.thanks-content .back-link:hover {
    text-decoration: underline;
}

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

.contact-details {
    max-width: 600px;
    margin: 0 auto;
}

.contact-details h1 {
    font-size: 42px;
    margin-bottom: 32px;
    text-align: center;
}

.detail-item {
    margin-bottom: 32px;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.detail-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #3498db;
}

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
}

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

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

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

    .hero-content {
        padding: 40px 20px;
    }

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

    .hero-image {
        min-height: 400px;
    }

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

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

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

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

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

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