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

:root {
    --primary: #8b5a6b;
    --primary-dark: #6d4555;
    --secondary: #d4a574;
    --accent: #e8c4a8;
    --dark: #2d2926;
    --light: #faf8f5;
    --gray: #7a7574;
    --white: #ffffff;
    --shadow: rgba(45, 41, 38, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
    font-size: 16px;
}

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
    padding-top: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px var(--shadow);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background: linear-gradient(45deg, var(--accent) 0%, var(--secondary) 100%);
}

.hero-float {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.hero-float-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-float-text {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 90, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-large {
    padding: 20px 50px;
    font-size: 1.1rem;
}

.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Sections Common */
section {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-accent {
    background: linear-gradient(135deg, var(--accent) 0%, rgba(232, 196, 168, 0.3) 100%);
}

.section-light {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    background: var(--white);
}

.problem-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.problem-list {
    list-style: none;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--gray);
}

.problem-icon {
    width: 24px;
    height: 24px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.problem-visual {
    flex: 1;
}

.problem-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
}

/* Story Section */
.story-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.story-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-block:nth-child(even) {
    flex-direction: row-reverse;
}

.story-image-wrap {
    flex: 1;
}

.story-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--accent) 0%, var(--secondary) 100%);
}

.story-content {
    flex: 1;
}

.story-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 15px;
}

.story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    background: var(--dark);
    color: var(--white);
}

.benefits-section .section-label {
    color: var(--secondary);
}

.benefits-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
    background: var(--light);
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    max-width: 550px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow);
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent);
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 25px;
    padding-top: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.testimonial-info h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--gray);
}

.testimonial-rating {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Services/Pricing Section */
.services-section {
    background: var(--white);
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 300px;
    max-width: 380px;
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow);
}

.service-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
}

.service-card.featured .service-header {
    background: var(--primary);
    color: var(--white);
}

.service-header {
    padding: 30px;
    text-align: center;
    background: var(--accent);
}

.service-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.service-price span {
    font-size: 1rem;
    font-weight: 400;
}

.service-body {
    padding: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--dark);
}

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

.feature-check {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.service-btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: var(--primary-dark);
}

/* Inline CTA */
.inline-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.inline-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.inline-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.inline-cta .btn {
    background: var(--white);
    color: var(--primary);
}

.inline-cta .btn:hover {
    background: var(--light);
    transform: translateY(-3px);
}

/* Trust Section */
.trust-section {
    background: var(--light);
}

.trust-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-label {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 10px;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    padding: 120px 0;
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-content {
    flex: 1;
}

.form-content h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.form-content p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--dark);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.form-container {
    flex: 1;
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 30px 60px var(--shadow);
}

.form-container h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Urgency Banner */
.urgency-banner {
    background: var(--secondary);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.urgency-banner p {
    font-size: 1.1rem;
    font-weight: 600;
}

.urgency-banner strong {
    color: var(--dark);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links {
    flex: 1 1 200px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact {
    flex: 1 1 250px;
}

.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(139, 90, 107, 0.4);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 160px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page */
.about-intro {
    background: var(--white);
}

.about-intro-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-intro-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-intro-image {
    flex: 1;
}

.about-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
}

.values-section {
    background: var(--light);
}

.values-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Services Page */
.services-intro {
    background: var(--white);
    text-align: center;
}

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

.services-full {
    background: var(--light);
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

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

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
}

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

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Contact Page */
.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.contact-info p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--dark);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-map {
    flex: 1;
}

.contact-map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray);
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.thanks-service {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px var(--shadow);
}

.thanks-service h3 {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.thanks-service p {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0;
}

/* Legal Pages */
.legal-section {
    background: var(--white);
    padding: 80px 0;
}

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

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-visual {
        order: -1;
    }

    .problem-content,
    .story-block,
    .story-block:nth-child(even),
    .form-wrapper,
    .about-intro-content,
    .service-detail,
    .service-detail:nth-child(even),
    .contact-wrapper {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-container {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

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

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 16px 35px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

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

    .testimonial-card {
        min-width: 100%;
        padding: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}
