* {
    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: #1f2937;
    background: #ffffff;
}

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #1f2937;
}

.ad-disclosure {
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
}

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

.hero-text {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f9fafb;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-text p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1f2937;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.intro-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #111827;
}

.intro-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.services-grid {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.service-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 3rem;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.service-info p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 1rem 2rem;
    background: #1f2937;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: #111827;
    transform: translateY(-2px);
}

.additional-services {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.additional-services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #111827;
}

.services-flex {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.service-item {
    flex: 1;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.service-item p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-item .price {
    font-size: 1.5rem;
}

.service-item button {
    margin-top: 1rem;
}

.process-section {
    padding: 5rem 2rem;
    background: #1f2937;
    color: #ffffff;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
    min-width: 80px;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #d1d5db;
}

.testimonial-section {
    padding: 5rem 2rem;
}

.testimonial-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #111827;
}

.testimonials {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #10b981;
}

.testimonial p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    font-weight: 600;
    color: #1f2937;
}

.cta-section {
    padding: 5rem 2rem;
    background: #f9fafb;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.cta-section p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #10b981;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
}

.selected-display {
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 4px;
    color: #374151;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #1f2937;
    color: #ffffff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #111827;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #f9fafb;
}

.disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background: #111827;
    color: #d1d5db;
    padding: 3rem 2rem 1rem;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-col p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

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

    .testimonials {
        flex-direction: column;
    }

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

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
}