/* 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: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.25rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #2c3e50;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

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

.nav-menu li a {
    color: #ecf0f1;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 0;
    display: block;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #3498db;
    border-bottom-color: #3498db;
    transform: translateX(5px);
}

/* Main Content Padding for Fixed Nav */
body {
    padding-top: 80px;
}

/* Hero Split-Screen */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 80px);
}

.hero-text {
    flex: 1;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ffffff;
    color: #667eea;
}

.btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-service {
    background-color: #3498db;
    color: #ffffff;
    width: 100%;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    width: 100%;
    font-size: 1.1rem;
    padding: 1.1rem 2rem;
}

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

/* Intro Asymmetric */
.intro-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
    gap: 3rem;
}

.intro-block h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

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

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    margin-top: 0.5rem;
}

/* Problem Section - Split */
.problem-section {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
}

.problem-visual {
    flex: 1;
    margin-bottom: 2rem;
}

.problem-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.problem-content {
    flex: 1;
}

.problem-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

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

/* Services Grid */
.services-grid {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 1.15rem;
    color: #666;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

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

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

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

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

/* Trust Section - Split */
.trust-section {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.trust-content {
    flex: 1;
    margin-bottom: 2.5rem;
}

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

.trust-reasons {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

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

.trust-visual {
    flex: 1;
}

.trust-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Testimonials Inline */
.testimonials-inline {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

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

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #888;
    font-style: normal;
}

/* Process Section */
.process-section {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

/* Form Section Split */
.form-section-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.form-intro {
    flex: 1;
    margin-bottom: 2.5rem;
}

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

.form-intro p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.form-note {
    font-style: italic;
    color: #888;
}

.form-container {
    flex: 1;
}

.main-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer Split */
.footer-split {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

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

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
    transform: translateX(5px);
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #229954;
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(39, 174, 96, 0.5);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 1.5rem;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 2rem;
}

.service-detail-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.service-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.service-includes ul {
    list-style: none;
    padding: 0;
}

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

.service-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing-block {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.service-cta {
    text-align: center;
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

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

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

/* About Page */
.about-story {
    padding: 3rem 1.5rem;
}

.story-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 2rem;
}

.story-block img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.story-content h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

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

.values-section {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #667eea;
}

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

.team-section {
    padding: 4rem 1.5rem;
}

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

.team-intro {
    margin-bottom: 2.5rem;
}

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

.team-photo img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.numbers-section {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

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

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.number-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.big-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.number-label {
    font-size: 1rem;
    color: #555;
}

.about-cta {
    text-align: center;
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

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

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

/* Contact Page */
.contact-layout {
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 3rem;
}

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

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #667eea;
}

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

.contact-block a {
    color: #3498db;
}

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

.contact-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin-top: 2rem;
}

.contact-note strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

.map-placeholder {
    margin-bottom: 2rem;
}

.map-placeholder img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.access-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.access-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.contact-reasons {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

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

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.contact-faq {
    padding: 4rem 1.5rem;
}

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

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

.faq-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

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

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

/* Thanks Page */
.thanks-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.service-selected {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.service-info {
    font-size: 1.05rem;
    color: #555;
}

.service-info strong {
    color: #667eea;
}

.thanks-next {
    margin-bottom: 2.5rem;
    text-align: left;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.next-step {
    padding: 1.2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.next-step strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.next-step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

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

.thanks-contact a {
    color: #3498db;
}

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

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-date {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #555;
}

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

.legal-section ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
}

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

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

.legal-section a:hover {
    color: #2980b9;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #ddd;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .hero-split {
        flex-direction: row;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .intro-asymmetric {
        flex-direction: row;
        align-items: center;
    }

    .intro-stats {
        flex-direction: row;
    }

    .problem-section {
        flex-direction: row-reverse;
        align-items: center;
        gap: 3rem;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .trust-section {
        flex-direction: row-reverse;
        align-items: center;
        gap: 3rem;
    }

    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .form-section-split {
        flex-direction: row;
        gap: 3rem;
    }

    .footer-main {
        flex-direction: row;
    }

    .footer-col {
        flex: 1;
    }

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

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

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

    .story-block {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .story-block.reverse {
        flex-direction: row-reverse;
    }

    .story-block img,
    .story-content {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .numbers-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .number-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .reasons-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reason-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .faq-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }

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

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background-color: transparent;
        padding: 0;
        gap: 2.5rem;
        box-shadow: none;
    }

    .nav-menu li a {
        color: #2c3e50;
        font-size: 1rem;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        transform: none;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .testimonial {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .value-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .number-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    section {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .intro-asymmetric,
    .problem-section,
    .trust-section,
    .form-section-split,
    .story-block,
    .service-detail-card,
    .contact-layout {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}