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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', 'Arial', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.nav-minimal {
    padding: 40px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.ad-label {
    font-size: 13px;
    color: #888888;
    padding: 6px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
}

.hero-minimal {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2a3a2e;
}

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

.hero-content-overlay {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 0 40px;
}

.hero-content-overlay h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: #e8e8e8;
    line-height: 1.6;
}

.intro-section {
    padding: 140px 60px;
    background-color: #ffffff;
}

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

.large-text {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.medium-text {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
}

.philosophy-section {
    padding: 120px 60px;
    background-color: #f8f8f8;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.philosophy-text p {
    margin-bottom: 30px;
    color: #4a4a4a;
}

.philosophy-image {
    flex: 1;
    background-color: #d0d8d0;
}

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

.cta-inline {
    padding: 100px 60px;
    background-color: #2a3a2e;
    text-align: center;
}

.cta-content h3 {
    font-size: 38px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 16px 50px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e8e8e8;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 50px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.services-preview {
    padding: 140px 60px;
    background-color: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 100px auto;
    text-align: center;
}

.services-intro h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-cards-minimal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.service-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 400px;
    background-color: #ffffff;
}

.card-image {
    width: 100%;
    height: 350px;
    background-color: #d0d8d0;
    margin-bottom: 30px;
}

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

.card-content h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.card-content p {
    color: #4a4a4a;
    margin-bottom: 15px;
}

.service-duration {
    font-size: 16px;
    color: #888888;
    margin-top: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 10px;
}

.services-link {
    text-align: center;
    margin-top: 80px;
}

.services-link a {
    font-size: 18px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}

.services-link a:hover {
    opacity: 0.6;
}

.testimonial-section {
    padding: 120px 60px;
    background-color: #f8f8f8;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    color: #888888;
}

.inquiry-section {
    padding: 140px 60px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 60px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.btn-submit {
    padding: 18px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #4a4a4a;
}

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

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    color: #888888;
    line-height: 1.7;
    text-align: center;
}

.footer-minimal {
    padding: 100px 60px 60px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.footer-primary {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #4a4a4a;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 16px;
    color: #b0b0b0;
    max-width: 400px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888888;
}

.footer-bottom p {
    margin: 0;
}

.page-hero {
    padding: 120px 60px 80px 60px;
    background-color: #f8f8f8;
}

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

.page-hero-content h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-story {
    padding: 120px 60px;
    background-color: #ffffff;
}

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

.story-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-content p {
    margin-bottom: 25px;
    color: #4a4a4a;
}

.story-image {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #d0d8d0;
}

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

.values-section {
    padding: 120px 60px;
    background-color: #f8f8f8;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

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

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

.value-item p {
    color: #4a4a4a;
}

.team-section {
    padding: 120px 60px;
    background-color: #ffffff;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.team-intro h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.team-intro p {
    color: #4a4a4a;
}

.team-expertise {
    max-width: 800px;
    margin: 0 auto;
}

.team-expertise p {
    color: #4a4a4a;
}

.approach-section {
    padding: 120px 60px;
    background-color: #f8f8f8;
}

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

.approach-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.approach-content p {
    margin-bottom: 25px;
    color: #4a4a4a;
}

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

.services-detailed {
    padding: 80px 60px;
    background-color: #ffffff;
}

.service-detailed {
    max-width: 1200px;
    margin: 0 auto 100px auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.service-visual {
    flex: 1;
    background-color: #d0d8d0;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-subtitle {
    font-size: 18px;
    color: #888888;
    margin-bottom: 30px;
}

.service-info p {
    margin-bottom: 25px;
    color: #4a4a4a;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-info ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.service-info li {
    margin-bottom: 10px;
    color: #4a4a4a;
}

.btn-service {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #4a4a4a;
}

.pricing-notes {
    padding: 80px 60px;
    background-color: #f8f8f8;
}

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

.notes-content h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.notes-content p {
    margin-bottom: 20px;
    color: #4a4a4a;
}

.application-cta {
    padding: 100px 60px;
    background-color: #2a3a2e;
    text-align: center;
}

.contact-info-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.contact-info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.contact-block {
    flex: 1 1 calc(33.333% - 60px);
    min-width: 250px;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-note {
    font-size: 15px;
    color: #888888;
}

.contact-approach {
    padding: 100px 60px;
    background-color: #f8f8f8;
}

.inquiry-cta {
    padding: 100px 60px;
    background-color: #2a3a2e;
    text-align: center;
}

.thanks-section {
    padding: 140px 60px;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 60px;
    line-height: 1.7;
}

.thanks-details {
    text-align: left;
    margin-bottom: 60px;
    padding: 50px;
    background-color: #f8f8f8;
}

.thanks-details h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-details p {
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 15px;
    color: #888888;
    margin-bottom: 60px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content p {
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 12px;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-content a:hover {
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 30px 60px;
    z-index: 1000;
    display: none;
}

.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;
    line-height: 1.6;
    color: #d0d0d0;
}

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

.btn-cookie {
    padding: 12px 30px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-cookie-alt:hover {
    background-color: #4a4a4a;
}

@media (max-width: 900px) {
    .nav-container {
        flex-direction: column;
        gap: 30px;
    }

    .nav-links {
        gap: 30px;
    }

    .hero-content-overlay h1 {
        font-size: 40px;
    }

    .philosophy-grid,
    .service-detailed {
        flex-direction: column;
    }

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

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

    .service-card {
        min-width: 100%;
    }

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

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

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

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

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
}