* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
    min-width: 300px;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-center .ad-disclosure {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-right {
    display: flex;
    gap: 32px;
}

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

.nav-right a:hover {
    color: #2563eb;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-left p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 500px;
}

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

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: #e5e7eb;
}

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

.intro-asymmetric {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.intro-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
}

.intro-text p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
}

.intro-image {
    flex: 0.8;
    background-color: #f3f4f6;
}

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

.services-split {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

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

.service-row {
    display: flex;
    gap: 0;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: #f3f4f6;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 350px;
}

.service-details {
    flex: 1;
    padding: 60px;
    background-color: #f9fafb;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #111827;
}

.service-details p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.select-service {
    padding: 14px 28px;
    background-color: #111827;
    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: #374151;
    transform: translateY(-2px);
}

.form-section {
    background-color: #f3f4f6;
    padding: 100px 40px;
}

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

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #111827;
}

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

.service-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.trust-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.trust-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    max-width: 400px;
    padding: 32px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

.trust-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.main-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 40px 20px;
}

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: #1f2937;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #9ca3af;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #111827;
}

.thanks-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.content-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.content-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #111827;
}

.content-page h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #374151;
}

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

.content-page ul {
    margin-bottom: 16px;
    padding-left: 32px;
}

.content-page ul li {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-page {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #111827;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.info-block p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #f3f4f6;
    min-height: 500px;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-content,
    .service-row,
    .trust-grid,
    .footer-content,
    .contact-split {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

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

    .services-header h2,
    .trust-content h2 {
        font-size: 32px;
    }

    .service-details {
        padding: 32px;
    }

    .service-form {
        padding: 32px;
    }
}