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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #ffffff;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e8e8e8;
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C5F2D;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #888;
    background-color: #f5f5f5;
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    font-weight: 500;
}

main {
    margin-top: 80px;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

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

.hero-minimal h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #5a5a5a;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    margin-top: 3rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background-color: #2C5F2D;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #234d24;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: #f5f5f5;
    color: #2a2a2a;
}

.cta-secondary:hover {
    background-color: #e5e5e5;
}

.intro-section {
    padding: 8rem 3rem;
    background-color: #fafafa;
}

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

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.content-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.large-text {
    font-size: 2rem;
    line-height: 1.6;
    color: #3a3a3a;
    font-weight: 400;
}

.philosophy-section {
    padding: 10rem 3rem;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.philosophy-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.services-highlight {
    padding: 10rem 3rem;
    background-color: #fafafa;
}

.services-highlight h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 1.5rem);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
    background-color: #f5f5f5;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 2rem 1rem 2rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0 2rem 1.5rem 2rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2C5F2D;
    margin: 0 2rem 1.5rem 2rem;
}

.btn-select-service {
    background-color: #2C5F2D;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.form-section {
    padding: 10rem 3rem;
}

.form-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.15rem;
    text-align: center;
    color: #5a5a5a;
    margin-bottom: 4rem;
}

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

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2a2a2a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #2C5F2D;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-section {
    padding: 8rem 3rem;
    background-color: #2C5F2D;
}

.testimonial-large {
    text-align: center;
    color: #ffffff;
}

.testimonial-large p {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2rem;
}

.testimonial-large cite {
    font-size: 1.15rem;
    font-style: normal;
    opacity: 0.85;
}

.approach-section {
    padding: 10rem 3rem;
}

.content-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.approach-image {
    flex: 0 0 45%;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

.step-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.step-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.values-section {
    padding: 8rem 3rem;
    background-color: #fafafa;
}

.values-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.values-list {
    list-style: none;
    font-size: 1.35rem;
    line-height: 2.2;
    color: #3a3a3a;
}

.values-list li {
    padding-left: 2rem;
    position: relative;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2C5F2D;
    font-weight: 700;
}

.final-cta-section {
    padding: 10rem 3rem;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.final-cta-section p {
    font-size: 1.25rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

.disclaimer-section {
    padding: 4rem 3rem;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 3rem 2rem 3rem;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column p,
.footer-column ul {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b0b0b0;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 2rem;
    z-index: 10000;
    display: none;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 8rem 3rem 4rem 3rem;
    background-color: #fafafa;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.story-section {
    padding: 8rem 3rem;
}

.story-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 3rem;
    background-color: #f5f5f5;
}

.story-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.values-detail-section {
    padding: 8rem 3rem;
    background-color: #fafafa;
}

.values-detail-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2C5F2D;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.team-section {
    padding: 8rem 3rem;
}

.team-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.section-intro {
    font-size: 1.15rem;
    text-align: center;
    color: #5a5a5a;
    margin-bottom: 4rem;
}

.team-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 3rem;
    background-color: #f5f5f5;
}

.team-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    text-align: center;
}

.method-section {
    padding: 8rem 3rem;
    background-color: #fafafa;
}

.method-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.method-step {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.method-step:last-child {
    border-bottom: none;
}

.method-step h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.method-step p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a5a5a;
}

.philosophy-extended-section {
    padding: 10rem 3rem;
}

.philosophy-text-extended {
    flex: 1;
}

.philosophy-text-extended h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.philosophy-text-extended p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.philosophy-image-extended {
    flex: 0 0 40%;
}

.philosophy-image-extended img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.cta-about-section {
    padding: 8rem 3rem;
    background-color: #fafafa;
    text-align: center;
}

.cta-about-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-about-section p {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

.services-detailed {
    padding: 6rem 3rem;
}

.service-detail {
    margin-bottom: 8rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f5f5f5;
}

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

.service-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2C5F2D;
    margin-bottom: 2rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem 0;
    color: #2a2a2a;
}

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

.service-detail-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a5a5a;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2C5F2D;
    font-weight: 700;
}

.service-duration {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.services-additional {
    padding: 8rem 3rem;
    background-color: #fafafa;
}

.services-additional h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.additional-services-grid {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.additional-service {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.additional-service h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.additional-service p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.how-it-works-section {
    padding: 8rem 3rem;
}

.how-it-works-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.step-process {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    background-color: #2C5F2D;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.contact-info-section {
    padding: 6rem 3rem;
}

.contact-details {
    flex: 1;
}

.contact-card {
    background-color: #fafafa;
    padding: 3rem;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2C5F2D;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-image {
    flex: 0 0 50%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.access-section {
    padding: 8rem 3rem;
    background-color: #fafafa;
}

.access-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.access-section > p {
    font-size: 1.15rem;
    text-align: center;
    color: #5a5a5a;
    margin-bottom: 4rem;
}

.consultation-modes {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mode-card {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.mode-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.mode-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.response-time-section {
    padding: 6rem 3rem;
}

.response-time-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.faq-section {
    padding: 8rem 3rem;
    background-color: #fafafa;
}

.faq-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.privacy-note-section {
    padding: 4rem 3rem;
}

.privacy-note {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    text-align: center;
}

.privacy-note a {
    color: #2C5F2D;
    text-decoration: underline;
}

.thanks-section {
    padding: 8rem 3rem;
    text-align: center;
    background-color: #fafafa;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.selected-service-display {
    margin-top: 2rem;
}

.selected-service-text {
    font-size: 1.15rem;
    color: #2C5F2D;
    font-weight: 600;
}

.next-steps-section {
    padding: 8rem 3rem;
}

.next-steps-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.steps-list {
    max-width: 900px;
    margin: 0 auto;
}

.step-item-thanks {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number-thanks {
    flex: 0 0 50px;
    height: 50px;
    background-color: #2C5F2D;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content-thanks h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2a2a2a;
}

.step-content-thanks p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.what-now-section {
    padding: 8rem 3rem;
    background-color: #fafafa;
}

.what-now-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.what-now-section > p {
    font-size: 1.15rem;
    text-align: center;
    color: #5a5a5a;
    margin-bottom: 4rem;
}

.links-grid {
    display: flex;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.link-card {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.link-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2C5F2D;
}

.link-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.contact-reminder-section {
    padding: 4rem 3rem;
}

.contact-reminder {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    text-align: center;
}

.legal-page {
    padding: 6rem 3rem 8rem 3rem;
}

.legal-page h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

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

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

.legal-page h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

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

.legal-page ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
}

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

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.legal-table thead {
    background-color: #f5f5f5;
}

.legal-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2a2a2a;
    border-bottom: 2px solid #e0e0e0;
}

.legal-table td {
    padding: 1rem;
    border-bottom: 1px solid #e8e8e8;
    color: #4a4a4a;
}

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

    .content-wide,
    .content-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .service-card {
        width: 100%;
    }

    .service-detail {
        flex-direction: column !important;
    }

    .approach-image,
    .philosophy-image-extended,
    .service-detail-image {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .ad-label {
        display: none;
    }

    .hero-minimal {
        padding: 4rem 1.5rem;
    }

    .hero-minimal h1 {
        font-size: 2.5rem;
    }

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

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

    .philosophy-text h2,
    .approach-text h2,
    .philosophy-text-extended h2 {
        font-size: 2rem;
    }

    .services-highlight h2,
    .final-cta-section h2,
    .page-hero h1 {
        font-size: 2.5rem;
    }

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

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

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

    .consultation-modes,
    .additional-services-grid,
    .links-grid {
        flex-direction: column;
    }
}