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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

a {
    color: #2a2a2a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.nav-minimal {
    padding: 60px 40px 40px;
    background-color: #ffffff;
}

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

.logo {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
}

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

.nav-links a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-minimal {
    padding: 120px 0;
    background-color: #ffffff;
}

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

.hero-minimal h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin-bottom: 80px;
}

.hero-image {
    margin-top: 80px;
    background-color: #f5f5f5;
}

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

.intro-section {
    padding: 140px 0;
    background-color: #fafafa;
}

.large-text {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    color: #2a2a2a;
}

.problem-section {
    padding: 140px 0;
    background-color: #ffffff;
}

.split-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.text-block {
    flex: 1;
}

.image-block {
    flex: 1;
    background-color: #f5f5f5;
}

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

h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

p {
    margin-bottom: 24px;
}

.insight-section {
    padding: 140px 0;
    background-color: #2a2a2a;
    color: #ffffff;
}

.insight-section h2 {
    color: #ffffff;
}

.trust-section {
    padding: 140px 0;
    background-color: #fafafa;
}

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

blockquote {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

cite {
    display: block;
    margin-top: 40px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 80px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #f5f5f5;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
}

.cta-inline {
    text-align: center;
    margin-top: 80px;
}

.btn-primary {
    display: inline-block;
    padding: 20px 50px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #444;
    opacity: 1;
}

.approach-section {
    padding: 140px 0;
    background-color: #fafafa;
}

.citation {
    font-size: 14px;
    color: #2a2a2a;
    text-decoration: underline;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    margin: 0;
}

.final-cta {
    padding: 140px 0;
    background-color: #ffffff;
    text-align: center;
}

.btn-large {
    display: inline-block;
    padding: 24px 60px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 20px;
    margin-top: 40px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background-color: #444;
    opacity: 1;
}

.footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 80px 0 40px;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: #cccccc;
    font-size: 16px;
}

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

.footer-section p {
    color: #cccccc;
    font-size: 16px;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 0;
    border-top: 1px solid #444;
}

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

.footer-references ol {
    padding-left: 20px;
}

.footer-references li {
    margin-bottom: 12px;
    color: #cccccc;
    font-size: 14px;
}

.footer-references a {
    color: #cccccc;
    text-decoration: underline;
}

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

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 30px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

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

.page-header h1 {
    font-size: 56px;
    font-weight: 300;
}

.header-subtitle {
    font-size: 20px;
    color: #666;
    margin-top: 20px;
}

.about-intro {
    padding: 100px 0;
    background-color: #fafafa;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.about-content img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #f5f5f5;
}

.about-text {
    flex: 1;
}

.mission-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.values-section {
    padding: 100px 0;
    background-color: #fafafa;
}

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

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

.team-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.team-section img {
    margin-top: 60px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #f5f5f5;
}

.approach-detail {
    padding: 100px 0;
    background-color: #fafafa;
}

.cta-section {
    padding: 100px 0;
    background-color: #2a2a2a;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
}

.services-full {
    padding: 100px 0;
    background-color: #fafafa;
}

.service-full-card {
    background-color: #ffffff;
    padding: 60px;
    margin-bottom: 60px;
}

.service-image {
    margin-bottom: 40px;
    background-color: #f5f5f5;
}

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

.service-benefits {
    list-style: none;
    margin: 30px 0;
}

.service-benefits li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.service-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 24px;
}

.pricing-reveal {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 10px;
}

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

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

.booking-form {
    margin-top: 60px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    font-size: 16px;
    font-family: inherit;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-label input {
    width: auto;
    margin-top: 5px;
}

.btn-submit {
    padding: 18px 50px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.contact-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.contact-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin: 60px 0;
}

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

.contact-note {
    margin-top: 60px;
    padding: 30px;
    background-color: #f0f0f0;
}

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

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

.map-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.thanks-section {
    padding: 120px 0;
    background-color: #fafafa;
}

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

.thanks-message {
    margin: 60px 0;
}

.thanks-image {
    margin: 80px 0;
    background-color: #f5f5f5;
}

.thanks-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 80px auto;
}

.steps-list {
    margin-top: 30px;
    padding-left: 30px;
}

.steps-list li {
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-cta {
    margin-top: 80px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2a2a2a;
    border: 1px solid #2a2a2a;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2a2a2a;
    color: #ffffff;
    opacity: 1;
}

.legal-page {
    padding: 100px 0;
    background-color: #ffffff;
}

.updated-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 60px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 40px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

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

    .hero-subtitle {
        font-size: 18px;
    }

    .large-text {
        font-size: 22px;
    }

    h2 {
        font-size: 32px;
    }

    .split-content,
    .about-content,
    .contact-content {
        flex-direction: column;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .service-full-card {
        padding: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .container-narrow,
    .container-medium,
    .container-wide {
        padding: 0 20px;
    }
}