/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation - Minimal Style */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #4a4a4a;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

/* Hero Section - Stacked Flow */
.hero-stacked {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 4rem 2rem;
}

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

.hero-stacked h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image-block {
    max-width: 1200px;
    margin: 2rem auto 0;
    overflow: hidden;
    border-radius: 8px;
}

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

/* Trust Ribbon - Alternating Section */
.trust-ribbon {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem;
}

.trust-items {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.trust-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.trust-item span {
    font-size: 1rem;
    color: #cccccc;
}

/* Intro Story Section - Stacked with Image */
.intro-story {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.story-text p {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.story-image {
    border-radius: 8px;
    overflow: hidden;
}

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

/* Process Flow - Vertical Rhythm */
.process-flow {
    background: linear-gradient(to bottom, #fafafa, #f0f0f0);
    padding: 6rem 2rem;
}

.process-flow h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
}

/* Services Showcase - Cards */
.services-showcase {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.services-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

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

/* CTA Sections - Alternating */
.cta-inline {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 5rem 2rem;
    color: #ffffff;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #ffffff;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.cta-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    border: 2px solid #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

/* Testimonials - Flow Style */
.testimonials-flow {
    background-color: #fafafa;
    padding: 6rem 2rem;
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.testimonial-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #1a1a1a;
}

.quote {
    font-size: 1.125rem;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.author {
    font-size: 1rem;
    font-weight: 600;
    color: #4a4a4a;
}

/* Booking Section - Stacked Form */
.booking-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-info {
    margin-bottom: 3rem;
}

.booking-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.booking-info p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.selected-service-display {
    background-color: #f0f0f0;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.selected-service-display p {
    margin-bottom: 0.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #1a1a1a;
}

.btn-submit {
    padding: 1.25rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Values Section - Grid Style */
.values-section {
    background: linear-gradient(to bottom, #e8e8e8, #f5f5f5);
    padding: 6rem 2rem;
}

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

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

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

.value-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
}

/* Footer - Stacked */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom p {
    color: #999999;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 2rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 1rem;
    line-height: 1.6;
}

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

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

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

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

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

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

/* Page Hero - For internal pages */
.page-hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.25rem;
    color: #cccccc;
}

/* About Page Specific */
.about-intro {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.about-text p {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

/* Timeline Section */
.timeline-section {
    background-color: #fafafa;
    padding: 6rem 2rem;
}

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

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

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

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

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.member-role {
    font-size: 1rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(to bottom, #f0f0f0, #e8e8e8);
    padding: 6rem 2rem;
}

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

.philosophy-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.philosophy-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

/* CTA About */
.cta-about {
    background-color: #1a1a1a;
    padding: 5rem 2rem;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content-centered p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

/* Services Page Specific */
.services-intro {
    background-color: #f9f9f9;
    padding: 3rem 2rem;
}

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

.intro-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
    text-align: center;
}

.service-detail-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.service-detail {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-badge {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1.25rem;
    font-weight: 700;
}

.service-description {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.price-list {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-name {
    font-size: 1rem;
    color: #2c2c2c;
}

.price {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.service-info {
    background-color: #fafafa;
    padding: 4rem 2rem;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-box {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-box p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-services {
    background-color: #1a1a1a;
    padding: 5rem 2rem;
}

/* Contact Page Specific */
.contact-main {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

.contact-info-block p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.contact-detail h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.contact-detail a {
    color: #1a1a1a;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.day {
    font-weight: 600;
    color: #2c2c2c;
}

.time {
    color: #4a4a4a;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

.map-caption {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: #666666;
}

.contact-extra {
    background-color: #fafafa;
    padding: 4rem 2rem;
}

.extra-info {
    max-width: 1200px;
    margin: 0 auto;
}

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

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.info-block {
    flex: 1;
    min-width: 280px;
}

.info-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-block p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-contact {
    background-color: #1a1a1a;
    padding: 5rem 2rem;
}

/* Thanks Page Specific */
.thanks-hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    text-align: center;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.selected-service-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.service-confirmation h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.125rem;
}

.next-steps {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.step-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.thanks-additional {
    background-color: #fafafa;
    padding: 6rem 2rem;
}

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

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

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

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

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.info-card a {
    color: #1a1a1a;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.cta-thanks {
    background-color: #1a1a1a;
    padding: 5rem 2rem;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

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

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

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

.legal-container h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-container h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

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

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

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

.legal-container a {
    color: #1a1a1a;
    font-weight: 600;
}

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

.cookie-table {
    margin: 2rem 0;
}

.cookie-row {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.cookie-name {
    margin-bottom: 1rem;
}

.cookie-name strong {
    font-size: 1.125rem;
    color: #1a1a1a;
}

.cookie-details p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness */
@media (min-width: 768px) {
    .story-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-image {
        flex: 1;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1;
        min-width: 280px;
    }

    .content-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info-block {
        flex: 1;
    }

    .map-placeholder {
        flex: 1;
    }

    .nav-links {
        display: flex;
    }
}

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

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

    .trust-items {
        flex-direction: column;
        align-items: center;
    }

    .process-flow h2,
    .services-showcase h2,
    .testimonials-flow h2,
    .values-section h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .cta-content h2,
    .cta-content-centered h2 {
        font-size: 2rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

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

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