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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: #e67e22;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d35400;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: #fff;
    color: #2c3e50;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e67e22;
}

.cta-nav {
    background: #e67e22;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-nav:hover {
    background: #d35400 !important;
}

/* Hero Sections */
.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(230, 126, 34, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.5);
}

.page-hero.small {
    height: 50vh;
    min-height: 400px;
}

/* Content Sections */
.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.center {
    text-align: center;
}

section {
    padding: 80px 20px;
}

section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.2;
}

section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #34495e;
}

section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

/* Story Sections */
.story-intro {
    background: #f8f9fa;
    padding: 100px 20px;
}

.story-intro p strong {
    color: #e67e22;
    font-weight: 700;
}

/* Image Break */
.image-break {
    position: relative;
    margin: 0;
    padding: 0;
}

.image-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.image-caption p {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

/* Problem Reveal */
.problem-reveal {
    padding: 100px 20px;
}

.problem-reveal .content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.problem-text {
    flex: 1;
    min-width: 300px;
}

.problem-visual {
    flex: 1;
    min-width: 300px;
}

.problem-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
    font-weight: bold;
}

/* Insight Section */
.insight-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 100px 20px;
}

.insight-section h2,
.insight-section p {
    color: #fff;
}

.insight-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-cards {
    display: flex;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-number {
    font-size: 48px;
    font-weight: 800;
    opacity: 0.5;
    margin-bottom: 15px;
}

.insight-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.insight-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-style: italic;
}

.insight-conclusion {
    font-size: 20px !important;
    font-weight: 600;
    margin-top: 40px;
}

/* Trust Build */
.trust-build {
    padding: 100px 20px;
    background: #f8f9fa;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.trust-icon {
    width: 70px;
    height: 70px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
}

/* Testimonials */
.testimonials-inline {
    padding: 100px 20px;
    background: #fff;
}

.testimonial-block {
    display: flex;
    gap: 25px;
    margin: 40px 0;
    align-items: flex-start;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text p {
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    color: #34495e;
    margin-bottom: 10px;
}

.testimonial-text cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

/* Visual Showcase */
.visual-showcase {
    padding: 0;
    margin: 0;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
}

.showcase-grid img {
    flex: 1;
    min-width: 300px;
    height: 400px;
    object-fit: cover;
}

/* Services and Pricing */
.services-pricing {
    padding: 100px 20px;
    background: #f8f9fa;
}

.pricing-intro {
    text-align: center;
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #e67e22;
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background: #e67e22;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h3 {
    font-size: 26px;
    color: #2c3e50;
    margin: 0;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #e67e22;
}

.service-body p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 25px;
}

.service-body ul {
    list-style: none;
    margin: 25px 0;
}

.service-body ul li {
    padding: 10px 0;
    font-size: 15px;
    color: #34495e;
    position: relative;
    padding-left: 25px;
}

.service-body ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.btn-select-service {
    width: 100%;
    background: #e67e22;
    color: #fff;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.btn-select-service:hover {
    background: #d35400;
}

/* Order Form */
.order-section {
    padding: 100px 20px;
    background: #fff;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.form-consent {
    margin: 30px 0;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
}

.form-consent span {
    font-size: 14px;
    color: #4a5568;
}

.btn-submit {
    width: 100%;
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 20px;
    background: #fff3cd;
    border-top: 4px solid #ffc107;
    border-bottom: 4px solid #ffc107;
}

.urgency-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #e67e22;
    margin-top: 30px;
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-wrapper p {
    color: #ecf0f1;
    font-size: 20px;
    margin-bottom: 40px;
}

.btn-final {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.btn-final:hover {
    background: #d35400;
    transform: translateY(-3px);
}

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

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    background: #e67e22;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e67e22;
}

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col ul li a:hover {
    color: #e67e22;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

/* About Page */
.about-story {
    padding: 100px 20px;
}

.quote-block {
    background: #f8f9fa;
    padding: 40px;
    margin: 40px 0;
    border-left: 5px solid #e67e22;
    border-radius: 8px;
}

.quote-block p {
    font-size: 22px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 15px;
}

.quote-block cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.principle-grid {
    display: flex;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.principle-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.principle-number {
    font-size: 48px;
    font-weight: 800;
    color: #e67e22;
    opacity: 0.3;
    margin-bottom: 15px;
}

.team-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
}

.values-visual {
    padding: 100px 20px;
}

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

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

.value-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
}

.cta-about {
    padding: 100px 20px;
    background: #f8f9fa;
}

/* Services Page */
.services-intro {
    padding: 80px 20px;
    background: #fff;
}

.pricing-note {
    font-size: 15px !important;
    color: #7f8c8d !important;
    text-align: center;
    margin-top: 20px;
}

.services-detailed {
    padding: 60px 20px 100px;
    background: #f8f9fa;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
}

.service-info {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.popular-badge,
.premium-badge {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.premium-badge {
    background: #9b59b6;
}

.price-tag {
    font-size: 42px;
    font-weight: 800;
    color: #e67e22;
    margin: 15px 0;
}

.service-includes {
    list-style: none;
    margin: 25px 0;
}

.service-includes li {
    padding: 8px 0;
    font-size: 16px;
}

.service-duration {
    font-size: 15px;
    color: #7f8c8d;
    margin-top: 20px;
}

.service-card.premium {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.service-process {
    padding: 100px 20px;
    background: #fff;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: #e67e22;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 14px;
    color: #7f8c8d;
}

.step-arrow {
    font-size: 32px;
    color: #e67e22;
}

.service-guarantee {
    padding: 100px 20px;
    background: #f8f9fa;
}

.guarantee-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.guarantee-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.guarantee-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.guarantee-item p {
    font-size: 14px;
    color: #7f8c8d;
}

.cta-services {
    padding: 100px 20px;
    background: #2c3e50;
}

.cta-services h2 {
    color: #fff;
}

.cta-services p {
    color: #ecf0f1;
}

/* Contact Page */
.contact-info {
    padding: 100px 20px;
}

.contact-info .content-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

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

.contact-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.visual-note {
    background: #f8f9fa;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
}

.visual-note p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.info-block {
    margin: 40px 0;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 8px;
}

.info-note {
    font-size: 14px !important;
    color: #7f8c8d !important;
    font-style: italic;
}

.service-areas {
    list-style: none;
    margin-top: 15px;
}

.service-areas li {
    padding: 8px 0;
    font-size: 16px;
    color: #4a5568;
}

.contact-cta {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-section {
    padding: 100px 20px;
    background: #fff;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
}

/* Thanks Page */
.thanks-hero {
    padding: 150px 20px 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.4);
}

.thanks-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

.service-summary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.selected-service-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #fff;
}

.steps-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-box {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-num {
    width: 50px;
    height: 50px;
    background: #e67e22;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.step-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.step-time {
    display: block;
    font-size: 13px;
    color: #ffd93d;
    font-weight: 600;
}

.contact-reminder {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    margin: 40px 0;
}

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

.contact-reminder a {
    color: #ffd93d;
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e67e22;
    color: #fff;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #fff;
    color: #667eea;
}

.why-trust {
    padding: 100px 20px;
    background: #f8f9fa;
}

.trust-points {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trust-point {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.point-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.trust-point h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.trust-point p {
    font-size: 15px;
    color: #7f8c8d;
}

/* Legal Pages */
.legal-content {
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2c3e50;
}

.update-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content strong {
    color: #2c3e50;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 700;
    color: #2c3e50;
}

.cookie-status {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.cookie-status p {
    font-size: 18px;
    margin-bottom: 20px;
}

#currentStatus {
    font-weight: 700;
    color: #e67e22;
}

#changeCookieSettings {
    background: #e67e22;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#changeCookieSettings:hover {
    background: #d35400;
}

.acceptance-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 40px 0;
    border-radius: 6px;
}

.acceptance-note p {
    margin: 0;
    color: #856404;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-sub {
        font-size: 18px;
    }

    section h2 {
        font-size: 32px;
    }

    section h3 {
        font-size: 24px;
    }

    section p {
        font-size: 16px;
    }

    .problem-reveal .content-wrapper {
        flex-direction: column;
    }

    .insight-cards {
        flex-direction: column;
    }

    .showcase-grid img {
        min-width: 100%;
    }

    .service-detail-card {
        flex-direction: column !important;
        padding: 30px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

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

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

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

    .thanks-hero h1 {
        font-size: 36px;
    }

    .legal-content h1 {
        font-size: 32px;
    }
}