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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1f2937;
    background-color: #ffffff;
}

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
}

.hero-minimal {
    padding: 8rem 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 4rem;
}

.hero-minimal h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    background-color: #f3f4f6;
    overflow: hidden;
    border-radius: 8px;
}

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

.intro-section {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.content-wrapper.narrow {
    max-width: 800px;
}

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

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

.services-preview {
    padding: 6rem 2rem;
}

.services-preview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #111827;
}

.services-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-minimal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card-minimal img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f3f4f6;
}

.service-card-minimal h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #111827;
}

.service-card-minimal p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-top: 1rem;
}

.select-service-btn {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    width: fit-content;
}

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

.approach-section {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #111827;
}

.approach-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #374151;
}

.approach-visual {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.testimonials-section {
    padding: 6rem 2rem;
}

.testimonial-block {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: #f9fafb;
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

.form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.form-section > .content-wrapper > p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.cta-primary {
    padding: 1rem 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

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

.cta-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

.cta-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #fef3c7;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: #78350f;
    line-height: 1.7;
}

.main-footer {
    background-color: #111827;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.875rem;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 6rem 2rem 4rem;
    background-color: #f9fafb;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.25rem;
    color: #4b5563;
}

.about-content {
    padding: 4rem 2rem;
}

.about-image-section {
    width: 100%;
    margin-bottom: 4rem;
}

.about-image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f3f4f6;
    object-fit: cover;
}

.about-text-section {
    margin-bottom: 4rem;
}

.about-text-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.about-text-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.value-item p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
}

.cta-section-inline {
    margin-top: 4rem;
    padding: 3rem;
    background-color: #f9fafb;
    text-align: center;
    border-radius: 8px;
}

.cta-section-inline h3 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #111827;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-card {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e5e7eb;
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.service-detail-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.service-detail-content {
    display: flex;
    gap: 3rem;
}

.service-detail-content img {
    width: 40%;
    height: auto;
    border-radius: 8px;
    background-color: #f3f4f6;
    object-fit: cover;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.7;
}

.contact-info-section {
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.contact-info-block p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #374151;
    line-height: 1.7;
}

.contact-image {
    width: 100%;
    margin-top: 2rem;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f3f4f6;
    object-fit: cover;
}

.contact-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.direction-info {
    margin-bottom: 4rem;
}

.direction-info h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.direction-info p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
}

.text-center {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin: 2rem 0;
}

.selected-service-display {
    font-size: 1.125rem;
    color: #374151;
    padding: 1rem;
    background-color: #f3f4f6;
    border-radius: 6px;
}

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

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-content {
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-minimal h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-detail-content {
        flex-direction: column;
    }

    .service-detail-content img {
        width: 100%;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}