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

.navbar {
    background-color: #1a2332;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.nav-menu a:hover {
    color: #64b5f6;
}

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

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.hero-image {
    flex: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-section {
    padding: 100px 32px;
    background-color: #f9fafb;
}

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-preview {
    padding: 100px 32px;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 16px;
}

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

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 16px;
}

.card-content p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    flex: 1;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #f3f4f6;
    color: #1a2332;
    border: 2px solid #e5e7eb;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.btn-select.selected {
    background-color: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

.trust-section {
    padding: 100px 32px;
    background-color: #f9fafb;
}

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

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

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

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 17px;
    color: #6b7280;
}

.contact-form {
    background-color: #f9fafb;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #4a5568;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: #2563eb;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.final-cta {
    padding: 100px 32px;
    text-align: center;
    background-color: #1a2332;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #e8eaed;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #1a2332;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #f3f4f6;
}

.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 60px 32px 32px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid #374151;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 24px 32px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #60a5fa;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #6b7280;
    color: #ffffff;
}

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

.contact-page {
    padding: 100px 32px;
    background-color: #f9fafb;
}

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

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

.contact-header h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: #6b7280;
}

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

.info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 16px;
}

.info-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
}

.about-page {
    padding: 100px 32px;
    background-color: #ffffff;
}

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

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 20px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
}

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

.about-image-block {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.services-page {
    padding: 100px 32px;
    background-color: #f9fafb;
}

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

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

.services-header h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 18px;
    color: #6b7280;
}

.service-detail {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.service-detail h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 16px;
}

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

.service-detail .price {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 20px;
}

.legal-page {
    padding: 100px 32px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 32px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a2332;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 600;
    color: #374151;
    margin-top: 32px;
    margin-bottom: 12px;
}

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

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

.legal-container ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.thanks-container h1 {
    font-size: 44px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 24px;
}

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

.thanks-container .service-info {
    background-color: #f0fdf4;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid #10b981;
}

.thanks-container .service-info p {
    margin: 0;
    font-weight: 600;
    color: #065f46;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-container .back-link:hover {
    background-color: #1e40af;
}

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

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

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

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