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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.ad-label {
    font-size: 0.7rem;
    color: #666;
    background: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

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

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

.nav-links a:hover {
    color: #8b6f47;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    min-height: 85vh;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #f5f5f5;
    font-weight: 300;
    max-width: 700px;
}

.intro-story {
    padding: 5rem 2rem;
    background: #faf8f5;
}

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

.opener {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

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

.visual-break {
    padding: 0;
    background-color: #f0ede8;
}

.dual-images {
    display: flex;
    flex-wrap: wrap;
}

.img-block {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background-color: #d5cfc5;
}

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

.problem-insight {
    padding: 6rem 2rem;
    background: #ffffff;
}

.insight-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.insight-wrapper p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.reveal-section {
    padding: 0;
    background-color: #f5f2ee;
}

.reveal-content {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.reveal-text {
    flex: 1;
    min-width: 300px;
    padding: 5rem 3rem;
}

.reveal-text h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

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

.reveal-image {
    flex: 1;
    min-width: 300px;
    background-color: #d9d3ca;
}

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

.testimonials-inline {
    padding: 5rem 2rem;
    background: #8b6f47;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    font-size: 0.95rem;
    color: #f5f5f5;
    font-weight: 500;
}

.benefits-visual {
    padding: 5rem 2rem;
    background: #fafafa;
}

.benefits-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.benefit-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    background-color: #e5e0d8;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

.process-story {
    padding: 6rem 2rem;
    background: #2c2c2c;
    color: #ffffff;
}

.process-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.process-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 200;
    color: #8b6f47;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: #faf8f5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e5dfd6;
}

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

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.5rem 1.5rem 1rem;
    color: #2c2c2c;
}

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

.service-card .price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #8b6f47;
    padding: 0.5rem 1.5rem;
}

.btn-select {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 0.9rem;
    background: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #6f5838;
}

.btn-select.selected {
    background: #2c2c2c;
}

.contact-form-section {
    padding: 6rem 2rem;
    background: #f5f2ee;
}

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

.form-container h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c2c2c;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b6f47;
}

.selected-service-display {
    background: #f9f7f4;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    display: none;
    color: #333;
    font-weight: 500;
}

.selected-service-display.visible {
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #6f5838;
}

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.btn-cta-alt {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-cta-alt:hover {
    background: #6f5838;
}

.site-footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

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

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

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

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

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

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

.footer-section ul li a:hover {
    color: #8b6f47;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0a0a0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie.accept {
    background: #8b6f47;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #6f5838;
}

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

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

.about-hero {
    margin-top: 80px;
}

.about-hero-image {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-color: #e5dfd6;
}

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

.about-story {
    padding: 6rem 2rem;
    background: #faf8f5;
}

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

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

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

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

.team-visual {
    padding: 0;
    background: #ffffff;
}

.team-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.team-image {
    flex: 1;
    min-width: 300px;
    background-color: #d9d3ca;
}

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

.team-text {
    flex: 1;
    min-width: 300px;
    padding: 4rem 3rem;
    background: #f5f2ee;
}

.team-text h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.team-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c2c2c;
}

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

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

.value-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

.workshop-showcase {
    padding: 5rem 2rem;
    background: #faf8f5;
}

.workshop-content {
    max-width: 1000px;
    margin: 0 auto;
}

.workshop-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.workshop-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.workshop-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e0dad1;
    object-fit: cover;
}

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

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

.commitment-wrapper h2 {
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.commitment-wrapper p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.services-header {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #8b6f47 0%, #6f5838 100%);
    text-align: center;
    color: #ffffff;
}

.services-header-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.services-header-content p {
    font-size: 1.2rem;
    font-weight: 300;
}

.services-detailed {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    background: #faf8f5;
    border-radius: 10px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background-color: #e5dfd6;
}

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

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

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

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b6f47;
    margin-bottom: 1.5rem;
}

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #6f5838;
}

.service-process {
    padding: 5rem 2rem;
    background: #f5f2ee;
}

.process-content {
    max-width: 1000px;
    margin: 0 auto;
}

.process-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c2c2c;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.timeline-marker {
    width: 60px;
    height: 60px;
    background: #8b6f47;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    color: #2c2c2c;
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.contact-header {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: #8b6f47;
    text-align: center;
    color: #ffffff;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    font-weight: 300;
}

.contact-main {
    padding: 5rem 2rem;
    background: #faf8f5;
}

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

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

.contact-info h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    color: #2c2c2c;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

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

.map-placeholder {
    background: #e5dfd6;
    padding: 3rem;
    border-radius: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.contact-hours-details {
    padding: 4rem 2rem;
    background: #ffffff;
}

.hours-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hours-wrapper h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.hours-wrapper p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-section {
    margin-top: 80px;
    padding: 8rem 2rem;
    background: #faf8f5;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #333;
    display: none;
}

.service-confirmation.visible {
    display: block;
}

.next-steps {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2.5rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-primary {
    background: #8b6f47;
    color: #ffffff;
}

.btn-primary:hover {
    background: #6f5838;
}

.btn-secondary {
    background: transparent;
    color: #8b6f47;
    border: 2px solid #8b6f47;
}

.btn-secondary:hover {
    background: #8b6f47;
    color: #ffffff;
}

.legal-page {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: #fafafa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-container h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.7rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-container h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

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

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

.legal-container ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.7rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.9rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background: #f5f2ee;
    font-weight: 600;
    color: #2c2c2c;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

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

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

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .legal-container {
        padding: 2rem 1.5rem;
    }
}