* {
    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: #2d3748;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f7fafc;
    color: #4a5568;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
}

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

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

.nav-links a:hover {
    color: #2d3748;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #fafafa;
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e2e8f0;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #1a202c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2d3748;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: transparent;
    color: #1a202c;
    border: 2px solid #1a202c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #1a202c;
    color: #ffffff;
}

.statement-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

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

.large-text {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    color: #2d3748;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

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

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

h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a202c;
}

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

.service-card-minimal {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 2rem;
}

.service-card-minimal:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card-minimal img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    background-color: #e2e8f0;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
    display: block;
}

.select-service-btn {
    padding: 0.75rem 2rem;
    background-color: #1a202c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.cta-center a {
    color: #1a202c;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #1a202c;
    padding-bottom: 0.25rem;
    transition: opacity 0.3s;
}

.cta-center a:hover {
    opacity: 0.7;
}

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

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e2e8f0;
}

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

.link-subtle {
    color: #1a202c;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #cbd5e0;
    transition: border-color 0.3s;
}

.link-subtle:hover {
    border-color: #1a202c;
}

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

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

.form-container h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.form-container > p {
    margin-bottom: 2rem;
    color: #4a5568;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 1rem;
    background-color: #1a202c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2d3748;
}

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

.disclaimer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #742a2a;
}

.disclaimer-section p {
    color: #742a2a;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #cbd5e0;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: #cbd5e0;
}

.footer-column a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-column p {
    color: #e2e8f0;
}

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

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

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: #48bb78;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.page-header {
    padding: 4rem 2rem;
    background-color: #fafafa;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #1a202c;
}

.header-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-top: 1rem;
}

.about-intro {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.intro-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
    color: #2d3748;
}

.team-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.team-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: #4a5568;
}

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e2e8f0;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

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

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

.approach-detail {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.approach-detail p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: #4a5568;
}

.cta-section-simple {
    padding: 6rem 2rem;
    background-color: #1a202c;
    text-align: center;
}

.cta-section-simple h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
}

.service-duration {
    font-size: 1rem;
    color: #718096;
    align-self: flex-end;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e2e8f0;
}

.process-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1a202c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.process-step p {
    color: #4a5568;
}

.contact-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    color: #4a5568;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-item .note {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e2e8f0;
}

.response-info {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.response-info h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.response-info p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

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

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.thanks-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

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

.next-steps {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    padding: 2rem;
    background-color: #fafafa;
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.step-item p {
    color: #4a5568;
}

.legal-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 500;
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.legal-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1rem;
    margin-left: 2rem;
    color: #4a5568;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2b6cb0;
    text-decoration: underline;
}

.legal-updated {
    margin-top: 3rem;
    font-style: italic;
    color: #718096;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.cookie-table td {
    color: #4a5568;
}

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .services-grid-minimal {
        gap: 2rem;
    }

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

    .service-card-minimal:nth-child(even) {
        flex-direction: column;
    }

    .service-card-minimal img {
        width: 100%;
        height: 250px;
    }

    .large-text {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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

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

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

    h2 {
        font-size: 2rem;
    }
}