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

:root {
    --primary-color: #2d3436;
    --secondary-color: #d4a574;
    --accent-color: #c29d6e;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.3rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 52, 54, 0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
}

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

.intro-text {
    flex: 1;
    padding: 3rem 8%;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.promise-section {
    background-color: var(--bg-light);
    padding: 6rem 8%;
    text-align: center;
}

.promise-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.promise-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
}

.services-split {
    padding: 5rem 5%;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.service-item {
    display: flex;
    margin-bottom: 5rem;
    align-items: center;
    gap: 4rem;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.service-info {
    flex: 1;
    padding: 2rem;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 2.2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonial-split {
    display: flex;
    align-items: stretch;
    background-color: var(--bg-light);
}

.testimonial-image {
    flex: 1;
}

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

.testimonial-content {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content blockquote {
    margin-bottom: 3rem;
}

.testimonial-content blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-content blockquote cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.process-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.process-text {
    flex: 1;
    padding: 3rem 8%;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.process-step {
    margin-bottom: 2.5rem;
}

.step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-right: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 3.5rem;
}

.process-image {
    flex: 1;
}

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

.form-section {
    background-color: var(--bg-light);
    padding: 6rem 8%;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.final-cta-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.final-cta-text {
    flex: 1;
    padding: 4rem 8%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70vh;
}

.final-cta-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.final-cta-image {
    flex: 1;
}

.final-cta-image img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
    transition: var(--transition);
}

.btn-sticky:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    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;
}

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

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-cookie-accept:hover {
    background-color: var(--accent-color);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.page-hero-text {
    flex: 1;
    padding: 3rem 8%;
}

.page-hero-text h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero-text p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.page-hero-image {
    flex: 1;
}

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

.about-story-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.about-story-split.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
}

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

.about-text {
    flex: 1;
    padding: 3rem 8%;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-section {
    background-color: var(--bg-light);
    padding: 5rem 8%;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.philosophy-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.values-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.values-text {
    flex: 1;
    padding: 3rem 8%;
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.values-image {
    flex: 1;
}

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

.experience-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.experience-split.reverse {
    flex-direction: row-reverse;
}

.experience-image {
    flex: 1;
}

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

.experience-text {
    flex: 1;
    padding: 3rem 8%;
}

.experience-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.experience-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.commitment-section {
    padding: 6rem 8%;
    text-align: center;
}

.commitment-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.commitment-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.testimonials-grid {
    background-color: var(--bg-light);
    padding: 5rem 8%;
}

.testimonials-grid h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-container {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.cta-about {
    padding: 5rem 8%;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-about-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

.services-intro {
    padding: 4rem 8%;
    text-align: center;
    background-color: var(--bg-light);
}

.services-intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-intro-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-detailed {
    padding: 5rem 5%;
}

.service-detail-item {
    display: flex;
    margin-bottom: 5rem;
    align-items: center;
    gap: 4rem;
}

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

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

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
    padding: 2rem;
    position: relative;
}

.featured-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-duration {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    list-style: disc;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.service-detail-price-special {
    margin: 1.5rem 0;
}

.price-original {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 1rem;
}

.price-current {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin: 0.5rem 0;
}

.price-save {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    display: block;
}

.featured-service {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.services-faq {
    background-color: var(--bg-light);
    padding: 5rem 8%;
}

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

.faq-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.booking-cta-services {
    padding: 5rem 8%;
    background-color: var(--primary-color);
    text-align: center;
}

.booking-cta-services h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-cta-services p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

.contact-info-split {
    display: flex;
    padding: 5rem 0;
    align-items: stretch;
}

.contact-details {
    flex: 1;
    padding: 3rem 8%;
}

.contact-details h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.contact-map-placeholder {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 2rem;
    color: var(--bg-white);
}

.map-overlay p {
    margin: 0;
    font-size: 1.05rem;
}

.contact-cta-section {
    background-color: var(--bg-light);
    padding: 5rem 8%;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-faq {
    padding: 5rem 8%;
}

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

.faq-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.contact-testimonial {
    background-color: var(--bg-light);
    padding: 5rem 8%;
}

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

.testimonial-large blockquote p {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-large blockquote cite {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--bg-white);
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.thanks-details strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

.thanks-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.next-step {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.step-num {
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.next-step h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.next-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.thanks-contact {
    font-size: 1.05rem;
    color: var(--text-light);
}

.thanks-contact a {
    color: var(--secondary-color);
    font-weight: 600;
}

.thanks-testimonial {
    background-color: var(--bg-light);
    padding: 4rem 8%;
}

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

.testimonial-box p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-box cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.legal-page {
    padding: 5rem 5%;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.update-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.legal-content ul li {
    list-style: disc;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-color);
}

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

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table th,
.cookies-table th {
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-white);
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: var(--transition);
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .service-item,
    .testimonial-split,
    .process-split,
    .final-cta-split,
    .page-hero-split,
    .about-story-split,
    .values-split,
    .experience-split,
    .contact-info-split,
    .service-detail-item {
        flex-direction: column;
    }

    .hero-text h1,
    .page-hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p,
    .page-hero-text p {
        font-size: 1.1rem;
    }

    .intro-split.reverse,
    .service-item.reverse,
    .about-story-split.reverse,
    .experience-split.reverse,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .testimonials-container,
    .next-steps {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .final-cta-text,
    .final-cta-image img,
    .page-hero-image img {
        min-height: 50vh;
    }
}