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

.minimal-nav {
    padding: 2.5rem 5%;
    background-color: #ffffff;
    position: relative;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #2c3e50;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #5a6c7d;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #95a5a6;
    font-style: italic;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid #e0e0e0;
}

.hero-minimal {
    padding: 8rem 5% 6rem;
    max-width: 1600px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #2c3e50;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #5a6c7d;
    line-height: 1.6;
}

.hero-visual {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8ebe8;
}

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

.intro-flow {
    padding: 8rem 5%;
    background-color: #ffffff;
}

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

.lead-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

.content-narrow p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #5a6c7d;
}

.content-narrow h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 4rem 0 2rem;
    color: #2c3e50;
}

.services-preview {
    padding: 8rem 5%;
    background-color: #fafafa;
}

.services-grid-minimal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

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

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

.service-image {
    flex: 1;
    min-width: 450px;
    height: 400px;
    background-color: #e8ebe8;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 2rem;
}

.service-info h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 400;
    color: #2c3e50;
    margin: 2rem 0;
}

.select-service {
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.contact-minimal {
    padding: 8rem 5%;
    background-color: #ffffff;
}

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

.contact-container h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1.2rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fafafa;
    color: #2c3e50;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c3e50;
    background-color: #ffffff;
}

.btn-submit {
    padding: 1.3rem 3rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #1a252f;
}

.research-section {
    padding: 8rem 5%;
    background-color: #f0f2f0;
}

.research-section a {
    color: #2c3e50;
    text-decoration: underline;
}

.research-section a:hover {
    color: #1a252f;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 6rem 5% 3rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-section p,
.footer-section a {
    font-size: 0.95rem;
    color: #b8c5d0;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

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

.reference-item {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

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

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #95a5a6;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #b8c5d0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 2rem 5%;
    display: none;
    z-index: 1000;
}

.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;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #ffffff;
    color: #2c3e50;
}

.btn-accept:hover {
    background-color: #e8ebe8;
}

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

.btn-reject:hover {
    background-color: #3d5266;
}

.page-header {
    padding: 6rem 5% 4rem;
    background-color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c3e50;
    letter-spacing: -0.02em;
}

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

.about-content {
    padding: 6rem 5%;
    background-color: #fafafa;
}

.about-block {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
    background-color: #ffffff;
    padding: 4rem;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    min-width: 500px;
    height: 450px;
    background-color: #e8ebe8;
    overflow: hidden;
}

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

.philosophy-section {
    margin: 6rem 0;
    padding: 4rem;
    background-color: #ffffff;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
}

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

.philosophy-item {
    flex: 1;
    min-width: 300px;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.credentials-section {
    padding: 4rem;
    background-color: #f0f2f0;
}

.credentials-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.credentials-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.credentials-section a {
    color: #2c3e50;
    text-decoration: underline;
}

.services-detail {
    padding: 6rem 5%;
    background-color: #fafafa;
}

.service-detail-card {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    margin-bottom: 6rem;
    background-color: #ffffff;
    padding: 4rem;
}

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

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

.service-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    list-style: none;
    margin: 2rem 0;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #5a6c7d;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
}

.service-detail-content a {
    color: #2c3e50;
    text-decoration: underline;
}

.service-detail-image {
    flex: 1;
    min-width: 450px;
    height: 500px;
    background-color: #e8ebe8;
    overflow: hidden;
}

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

.cta-section {
    padding: 8rem 5%;
    background-color: #2c3e50;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #b8c5d0;
    margin-bottom: 2.5rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.3rem 3rem;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #e8ebe8;
}

.contact-page {
    padding: 6rem 5%;
    background-color: #fafafa;
}

.contact-info-layout {
    display: flex;
    gap: 5rem;
    margin-bottom: 5rem;
    background-color: #ffffff;
    padding: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #5a6c7d;
}

.location-visual {
    flex: 1;
    min-width: 500px;
    height: 600px;
    background-color: #e8ebe8;
    overflow: hidden;
}

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

.additional-info {
    padding: 4rem;
    background-color: #ffffff;
}

.additional-info h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: #2c3e50;
}

.additional-info h2:first-child {
    margin-top: 0;
}

.additional-info p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #5a6c7d;
}

.thanks-page {
    padding: 10rem 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 5rem 4rem;
}

.thanks-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-ref {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 400;
    margin: 1.5rem 0;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

.btn-return {
    display: inline-block;
    padding: 1.3rem 3rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
}

.btn-return:hover {
    background-color: #1a252f;
}

.legal-page {
    padding: 6rem 5%;
    background-color: #fafafa;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.last-updated {
    font-size: 0.95rem;
    color: #95a5a6;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.legal-page ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
}

.legal-page a {
    color: #2c3e50;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1a252f;
}

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

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

.cookie-table th {
    background-color: #f0f2f0;
    font-weight: 400;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
}

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

    .service-card,
    .about-block,
    .service-detail-card,
    .contact-info-layout {
        flex-direction: column;
    }

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

    .about-block.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-image,
    .about-image,
    .service-detail-image,
    .location-visual {
        min-width: 100%;
        height: 400px;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .footer-section {
        flex: 1;
        min-width: 200px;
    }
}

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

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

    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ad-disclosure {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }
}