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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* Container Widths */
.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.container-split {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.container-split-reverse {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.split-text,
.split-image {
    flex: 1;
    min-width: 280px;
}

/* Navigation */
.nav-minimal {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.logo a {
    color: #1a1a1a;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #1a1a1a;
}

/* Hero Section - Visual Dominant */
.hero-visual-dominant {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    z-index: -1;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.hero-title-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-hero-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-heading-center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #1a1a1a;
}

.section-heading-left {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    color: #1a1a1a;
}

.section-subheading {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Intro Section */
.intro-curiosity {
    background: #f9f9f9;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.intro-text-bold {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 30px;
    color: #1a1a1a;
}

/* Problem Amplification */
.problem-amplification {
    background: #ffffff;
}

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

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.1rem;
    color: #3a3a3a;
}

.problem-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-size: 1.5rem;
    font-weight: bold;
}

.emphasis-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 25px;
    color: #1a1a1a;
    font-style: italic;
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    border-radius: 4px;
}

.img-problem {
    background: linear-gradient(135deg, #b0b0b0 0%, #909090 100%);
}

.img-craft {
    background: linear-gradient(135deg, #a0a0a0 0%, #808080 100%);
}

/* Insight Reveal */
.insight-reveal {
    background: #1a1a1a;
    color: #ffffff;
}

.insight-reveal .section-heading-center {
    color: #ffffff;
}

.insight-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #e0e0e0;
}

.insight-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.insight-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.insight-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.insight-card p {
    color: #c0c0c0;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: #f5f5f5;
}

.steps-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 25px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.5;
}

.step-arrow {
    font-size: 2rem;
    color: #4a4a4a;
    display: none;
}

.cta-inline-wrapper {
    text-align: center;
}

.cta-inline-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-inline-btn:hover {
    background: #333333;
}

/* Testimonials */
.testimonials-inline {
    background: #ffffff;
}

.testimonial-block {
    margin: 40px 0;
    padding: 30px;
    background: #f9f9f9;
    border-left: 4px solid #1a1a1a;
    border-radius: 4px;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #4a4a4a;
}

/* Trust Building */
.trust-building {
    background: #f5f5f5;
}

/* Benefits */
.benefits-reveal {
    background: #ffffff;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 4px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-item p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Services & Pricing */
.services-pricing {
    background: #f5f5f5;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.service-card {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-card-featured {
    border: 2px solid #1a1a1a;
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
}

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

.service-header h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #3a3a3a;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Urgency Element */
.urgency-element {
    background: #ffffff;
}

.urgency-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 40px;
    border-radius: 4px;
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.cta-urgency {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-urgency:hover {
    background: #333333;
}

/* Form Section */
.form-section {
    background: #f9f9f9;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    flex: 1;
}

.form-checkbox label a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

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

/* About Section */
.about-section {
    background: #f5f5f5;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.cta-text-link {
    display: inline-block;
    margin-top: 20px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.cta-text-link:hover {
    transform: translateX(5px);
}

/* Sticky CTA */
.final-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: none;
}

.sticky-cta-bar {
    background: #1a1a1a;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.sticky-cta-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.sticky-cta-btn {
    padding: 12px 30px;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #333333;
    text-align: center;
    color: #808080;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    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: 20px;
    flex-wrap: wrap;
}

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

.cookie-content p a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie-accept {
    background: #4CAF50;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-reject {
    background: #808080;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    opacity: 0.9;
}

/* Page Header */
.page-header {
    padding: 80px 0 60px;
    background: #f5f5f5;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #4a4a4a;
}

/* Legal Pages */
.legal-page {
    background: #ffffff;
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #3a3a3a;
}

.legal-page ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    margin-bottom: 10px;
    color: #3a3a3a;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-updated {
    font-style: italic;
    color: #808080;
    margin-bottom: 30px;
}

.legal-effective {
    margin-top: 40px;
    font-weight: 600;
    color: #1a1a1a;
}

/* About Page */
.about-story,
.about-team,
.about-process,
.about-materials {
    padding: 60px 0;
}

.about-story {
    background: #ffffff;
}

.about-values {
    background: #f5f5f5;
    padding: 60px 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    color: #4a4a4a;
    line-height: 1.6;
}

.about-team {
    background: #f9f9f9;
}

.about-process {
    background: #ffffff;
}

.process-explanation {
    max-width: 800px;
    margin: 0 auto;
}

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

.process-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.1rem;
    color: #3a3a3a;
}

.process-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 1.3rem;
}

.about-materials {
    background: #f5f5f5;
}

.about-cta {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0;
}

.cta-box-centered {
    text-align: center;
    padding: 40px;
}

.cta-box-centered h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-box-centered p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.cta-btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
}

/* Services Page */
.services-detailed {
    background: #ffffff;
}

.service-detail-card {
    background: #f9f9f9;
    padding: 50px 40px;
    margin-bottom: 40px;
    border-radius: 4px;
    position: relative;
}

.service-detail-card.service-featured {
    background: #ffffff;
    border: 2px solid #1a1a1a;
}

.service-detail-header {
    margin-bottom: 30px;
}

.service-detail-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-detail-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail-list {
    list-style: none;
    margin: 20px 0;
}

.service-detail-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #3a3a3a;
}

.service-detail-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-size: 1.5rem;
}

.services-faq {
    background: #f5f5f5;
    padding: 60px 0;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.services-cta {
    background: #1a1a1a;
    padding: 80px 0;
}

.services-cta .cta-box-centered {
    background: none;
}

/* Contact Page */
.contact-info {
    background: #ffffff;
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-note {
    margin-top: 15px;
    font-style: italic;
    color: #808080;
}

.contact-directions {
    background: #f5f5f5;
    padding: 60px 0;
}

.contact-directions h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-directions h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-directions p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-visit {
    background: #ffffff;
    padding: 60px 0;
}

.contact-visit h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-visit p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 15px;
}

.visit-checklist {
    list-style: none;
    margin: 25px 0;
}

.visit-checklist li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #3a3a3a;
}

.visit-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-form-section {
    background: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-form-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a4a4a;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0 60px;
    background: #f9f9f9;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.thanks-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #3a3a3a;
    font-size: 1.05rem;
}

.thanks-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.selected-service-info {
    background: #e8f5e9;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 40px;
    border-left: 4px solid #4CAF50;
}

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

.cta-btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.cta-btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.thanks-extra {
    background: #ffffff;
    padding: 60px 0;
}

.thanks-extra h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-extra > div > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.thanks-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.thanks-link-card {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.thanks-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thanks-link-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.thanks-link-card p {
    color: #4a4a4a;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookies-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    color: #4a4a4a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 15px;
    }

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

    .hero-title-large {
        font-size: 2.5rem;
    }

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

    .section-heading-center,
    .section-heading-left {
        font-size: 2rem;
    }

    .container-split,
    .container-split-reverse {
        flex-direction: column;
    }

    .step-arrow {
        display: none;
    }

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

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

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

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

    .thanks-icon {
        font-size: 4rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 2rem;
    }

    .section-heading-center,
    .section-heading-left {
        font-size: 1.7rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-hero-primary,
    .cta-inline-btn,
    .cta-urgency,
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }
}