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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.brand a {
    color: inherit;
    text-decoration: none;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.hero-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
    position: relative;
}

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

.hero-text-block h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.hero-image-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8f5e9;
}

.story-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.story-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-section h3 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: #34495e;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.inline-image-block {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.reference-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.reference-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.split-trust-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.trust-text {
    flex: 1;
    min-width: 300px;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.trust-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.testimonial-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.testimonial-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    border-radius: 8px;
}

.testimonial-block p {
    font-size: 1.15rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-block cite {
    font-style: normal;
    font-weight: 600;
    color: #555;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.insight-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.insight-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.insight-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.ingredient-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.ingredient-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

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

.ingredient-item {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #27ae60;
}

.ingredient-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.ingredient-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.benefits-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.alternating-benefits {
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.benefit-text {
    flex: 1;
    min-width: 300px;
}

.benefit-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

.pricing-reveal-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 4rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 2.5rem;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card.featured {
    background-color: #e8f5e9;
    border-color: #27ae60;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.3rem;
}

.price-note {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
    display: block;
}

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

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

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

.form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.form-section > .narrow-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.main-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f9fafb;
    cursor: not-allowed;
}

.consent-group {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
    font-size: 0.95rem;
    color: #555;
}

.checkbox-label a {
    color: #3498db;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

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

.disclaimer-box {
    padding: 2rem;
    background-color: #ffffff;
    border: 2px solid #f39c12;
    border-radius: 8px;
}

.disclaimer-box h4 {
    font-size: 1.3rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.references-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.references-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

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

.header-content h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.subheading {
    font-size: 1.3rem;
    color: #555;
}

.about-story-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.story-block {
    margin-bottom: 4rem;
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-block p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.inline-image-about {
    margin: 2.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.values-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.value-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

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

.split-content-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.approach-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.commitment-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.commitment-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.commitment-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-overview-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.services-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.price-label {
    font-size: 1rem;
    color: #777;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.price-unit {
    font-size: 0.9rem;
    color: #777;
}

.service-cta-btn {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.services-faq-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.services-faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.faq-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-info-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-details-block {
    flex: 1;
    min-width: 300px;
}

.contact-details-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-details-block > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.contact-info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.contact-info-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.email-text {
    font-weight: 600;
    color: #2c3e50;
}

.email-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.contact-cta-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.cta-box {
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-box p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #229954;
}

.visit-info-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.visit-info-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.visit-info-section p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

.thanks-message {
    margin-bottom: 3rem;
}

.thanks-message p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thanks-next-steps {
    background-color: #f9fafb;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
}

.additional-info-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.additional-info-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.additional-info-section > .narrow-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.info-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.info-link-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.info-link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.info-link-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-page-header {
    padding: 3rem 2rem 2rem;
    background-color: #f9fafb;
    text-align: center;
}

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

.legal-text h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    color: #2c3e50;
}

.legal-text h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.legal-text h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
}

.legal-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-text li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-text a {
    color: #3498db;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

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

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

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .split-trust-layout,
    .benefit-row,
    .split-content-section,
    .contact-layout {
        flex-direction: column;
    }

    .benefit-row.reverse {
        flex-direction: column;
    }

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

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

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

    .cookie-btn {
        width: 100%;
    }
}