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

.ad-disclosure {
    background-color: #f8f8f8;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background-color: #ffffff;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

main {
    min-height: 70vh;
}

.hero-minimal {
    padding: 120px 60px 140px 60px;
    background-color: #f9fafb;
}

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #0052a3;
    cursor: pointer;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #0066cc;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.image-section {
    width: 100%;
    background-color: #e8e8e8;
}

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

.content-wide {
    padding: 100px 60px;
    background-color: #ffffff;
}

.text-block-centered {
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.services-minimal {
    padding: 100px 60px;
    background-color: #f9fafb;
}

.services-minimal h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 80px;
}

.service-grid-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-minimal {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.service-card-minimal:hover {
    transform: translateY(-5px);
}

.service-card-minimal h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-card-minimal p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 30px;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

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

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-container-centered h2 {
    margin-bottom: 20px;
}

.form-container-centered > p {
    margin-bottom: 50px;
    color: #666;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    padding: 16px 20px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: inherit;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 18px 40px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0052a3;
}

.trust-section {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    background-color: #f9fafb;
    gap: 80px;
}

.trust-content {
    flex: 1;
}

.trust-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.disclaimer-section {
    padding: 60px 60px;
    background-color: #f0f0f0;
}

.disclaimer-text {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 60px 30px 60px;
}

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

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #cccccc;
    text-decoration: none;
    line-height: 1.6;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 30px 60px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    margin: 0;
}

.cookie-content a {
    color: #0066cc;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #0052a3;
}

.btn-cookie-reject {
    background-color: #f0f0f0;
    color: #1a1a1a;
}

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

.page-header-minimal {
    padding: 100px 60px 60px 60px;
    background-color: #f9fafb;
    text-align: center;
}

.page-header-minimal h1 {
    margin-bottom: 20px;
}

.page-header-minimal p {
    font-size: 20px;
    color: #666;
}

.about-content {
    padding: 80px 60px;
}

.about-text-block {
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.about-image-full {
    width: 100%;
    margin-bottom: 80px;
    background-color: #e8e8e8;
}

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

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

.about-values h2 {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #666;
}

.approach-section {
    max-width: 1100px;
    margin: 0 auto 80px auto;
}

.approach-section h2 {
    margin-bottom: 30px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.mission-statement {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background-color: #f9fafb;
}

.mission-statement h2 {
    margin-bottom: 30px;
}

.cta-about {
    padding: 100px 60px;
    text-align: center;
    background-color: #f9fafb;
}

.cta-about h2 {
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.services-detailed {
    padding: 80px 60px;
}

.service-detail-item {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 30px;
}

.service-detail-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 12px;
}

.service-detail-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
}

.pricing-info {
    max-width: 900px;
    margin: 0 auto 80px auto;
    padding: 40px;
    background-color: #f9fafb;
}

.pricing-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.pricing-info p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.contact-layout {
    display: flex;
    gap: 80px;
    padding: 80px 60px;
    max-width: 1300px;
    margin: 0 auto;
}

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

.contact-info-block h2 {
    margin-bottom: 50px;
}

.contact-item {
    margin-bottom: 50px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 8px;
}

.contact-item .note {
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin-top: 10px;
}

.contact-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.contact-note-section {
    max-width: 900px;
    margin: 0 auto 80px auto;
    padding: 0 60px;
}

.thanks-section {
    padding: 120px 60px;
    background-color: #f9fafb;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h1 {
    margin-bottom: 30px;
}

.thanks-message {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.selected-service-info {
    padding: 30px;
    background-color: #ffffff;
    margin-bottom: 50px;
    display: none;
}

.selected-service-info p {
    font-size: 18px;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin-bottom: 60px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.next-steps ul {
    max-width: 700px;
    margin: 0 auto;
    list-style-position: outside;
    padding-left: 20px;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.contact-reminder {
    padding: 40px;
    background-color: #ffffff;
}

.contact-reminder p {
    margin-bottom: 10px;
}

.contact-reminder strong {
    color: #1a1a1a;
    font-weight: 600;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 25px;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .minimal-nav {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-minimal {
        padding: 60px 30px 80px 30px;
    }

    .content-wide,
    .services-minimal,
    .form-section-minimal,
    .trust-section,
    .disclaimer-section {
        padding: 60px 30px;
    }

    .service-grid-minimal {
        flex-direction: column;
    }

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

    .trust-section {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

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

    .approach-steps {
        gap: 40px;
    }

    .step {
        flex-direction: column;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .contact-layout {
        flex-direction: column;
        gap: 40px;
        padding: 60px 30px;
    }

    .thanks-section {
        padding: 60px 30px;
    }

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

    .legal-page {
        padding: 60px 30px;
    }
}
