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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #ffd700;
    color: #1a1a1a;
}

.btn-cookie-accept:hover {
    background: #ffed4e;
}

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

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

/* Navigation */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    max-width: 90%;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.nav-brand a {
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #666;
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #ffd700;
    color: #1a1a1a;
}

/* Hero Section */
.hero-immersive {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    text-align: center;
    color: #ffffff;
    z-index: 1;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-block;
    background: #ffd700;
    color: #1a1a1a;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* Content Sections */
.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* Story Intro */
.story-intro {
    background: #f8f8f8;
}

.story-intro h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 800;
}

.story-intro p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Problem Reveal */
.problem-reveal {
    background: #ffffff;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Insight Block */
.insight-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
    text-align: center;
}

.insight-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

.insight-block h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.insight-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Showcase Grid */
.showcase-grid {
    background: #ffffff;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

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

.product-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.product-card {
    flex: 1;
    min-width: 280px;
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-image {
    aspect-ratio: 1/1;
    overflow: hidden;
}

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

.card-content {
    padding: 2rem;
}

.card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.card-content p {
    color: #666;
    font-size: 1rem;
}

.cta-centered {
    text-align: center;
}

/* Trust Indicators */
.trust-indicators {
    background: #ffd700;
    padding: 3rem 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.trust-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

/* Testimonials */
.testimonial-flow {
    background: #f8f8f8;
}

.testimonial {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #ffd700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    font-style: normal;
}

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

.benefits-reveal h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Pricing Section */
.services-pricing {
    background: #f8f8f8;
}

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

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #666;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #ffd700;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.features {
    margin-bottom: 2rem;
    text-align: left;
}

.features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #444;
    padding-left: 1.5rem;
    position: relative;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

/* Urgency Block */
.urgency-block {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #ffffff;
}

.urgency-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-align: center;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-align: center;
}

.btn-urgent {
    display: inline-block;
    background: #ffffff;
    color: #ff6b6b;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    display: block;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.btn-urgent:hover {
    background: #ffd700;
    color: #1a1a1a;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.95rem;
}

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

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

.btn-submit:hover {
    background: #ffd700;
    color: #1a1a1a;
}

/* Final CTA */
.final-cta {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-large {
    display: inline-block;
    background: #ffd700;
    color: #1a1a1a;
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col p {
    color: #ccc;
    line-height: 1.7;
}

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

.footer-col a {
    color: #ccc;
}

.footer-col a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

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

.sticky-cta.active {
    display: block;
    animation: slideInUp 0.3s ease;
}

.sticky-btn {
    display: block;
    background: #ffd700;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Page Hero */
.page-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    color: #ccc;
}

/* About Page */
.about-story {
    background: #ffffff;
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.about-story p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    background: #f8f8f8;
    text-align: center;
}

.values-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.mission-vision {
    background: #ffffff;
}

.team-approach {
    background: #f8f8f8;
}

.team-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.team-approach p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.process-list {
    margin-top: 2rem;
}

.process-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
    padding-left: 2rem;
    position: relative;
}

.process-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

.why-trust {
    background: #ffffff;
    text-align: center;
}

.why-trust h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.why-trust p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.service-block {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.service-block.featured {
    border: 3px solid #ffd700;
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
}

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

.service-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.service-price {
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
}

.service-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-content h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.service-content ul {
    margin-bottom: 2rem;
}

.service-content ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    padding-left: 2rem;
    position: relative;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

.additional-services {
    background: #f8f8f8;
}

.additional-services h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
}

.extras-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.extra-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.extra-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.extra-item p {
    color: #666;
    line-height: 1.7;
}

.comparison-table {
    background: #ffffff;
}

.comparison-table h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
}

.table-responsive {
    overflow-x: auto;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
}

.services-table thead {
    background: #1a1a1a;
    color: #ffffff;
}

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

.services-table tbody tr:hover {
    background: #ffffff;
}

.cta-services {
    background: #f8f8f8;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-services p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
}

/* Contact Page */
.contact-info {
    background: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background: #f8f8f8;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
}

.contact-card a {
    color: #1a1a1a;
    font-weight: 600;
}

.contact-card a:hover {
    color: #ffd700;
}

.contact-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-methods {
    background: #f8f8f8;
}

.contact-methods h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    text-align: center;
}

.methods-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.method-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
}

.method-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.method-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.faq-contact {
    background: #ffffff;
}

.faq-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

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

.faq-item {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.map-placeholder {
    background: #f8f8f8;
}

.map-placeholder h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.map-container {
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder-box {
    padding: 4rem;
    text-align: center;
    background: #f8f8f8;
}

.map-placeholder-box p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.map-note {
    font-size: 1rem;
    color: #666;
}

/* Thanks Page */
.thanks-page {
    background: #f8f8f8;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-details p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-next-steps ul {
    text-align: left;
    margin: 0 auto 2rem;
    max-width: 400px;
}

.thanks-next-steps li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.thanks-next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    background: #ffffff;
    padding: 8rem 0 5rem;
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.legal-page h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
}

.legal-page p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
}

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

.legal-page ul li {
    list-style: disc;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #444;
}

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

.legal-page a:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .floating-nav {
        top: 1rem;
        padding: 0.75rem 1.5rem;
        gap: 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

    .split-content.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 1rem;
        width: 95%;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    section {
        padding: 3rem 0;
    }

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

    .pricing-grid {
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .page-hero {
        padding: 8rem 0 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-table {
        font-size: 0.9rem;
    }

    .services-table th,
    .services-table td {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .thanks-container {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}