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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

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

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #34495e;
    position: relative;
}

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

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

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

/* Hero Sections */
.hero-full {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(230, 126, 34, 0.85)),
                url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 3rem 2rem;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-content-centered h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.cta-hero {
    display: inline-block;
    background: white;
    color: #e74c3c;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

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

/* Page Hero for Internal Pages */
.page-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.9), rgba(44, 62, 80, 0.95)),
                url('https://images.unsplash.com/photo-1519689680058-324335c77eba?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    text-align: center;
    color: white;
    padding: 3rem 2rem;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

/* Story Intro Section */
.story-intro {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.opening-line {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
}

.quote-block {
    background: white;
    border-left: 5px solid #e74c3c;
    padding: 2rem;
    margin: 2rem 0;
    font-size: 1.15rem;
    font-style: italic;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Split Block Layout */
.split-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

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

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

.insight-list {
    list-style: none;
    margin: 2rem 0;
}

.insight-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.insight-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Problem & Insight Sections */
.problem-reveal {
    background: white;
    padding: 5rem 2rem;
}

.insight-section {
    background: #ecf0f1;
    padding: 5rem 2rem;
}

.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

/* Visual Break */
.visual-break {
    margin: 0;
    position: relative;
}

.image-full {
    position: relative;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.image-caption p {
    font-size: 1.1rem;
    margin: 0;
}

/* Solution Section */
.solution-intro {
    background: white;
    padding: 5rem 2rem;
}

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

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    flex: 1 1 calc(50% - 2rem);
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

/* Testimonials */
.testimonials-flow {
    background: #34495e;
    color: white;
    padding: 5rem 2rem;
}

.testimonials-flow h2 {
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #e74c3c;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #e74c3c;
    font-size: 1.05rem;
}

/* CTA Sections */
.cta-mid {
    background: linear-gradient(135deg, #e67e22, #e74c3c);
    padding: 4rem 2rem;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #e74c3c;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

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

/* Deep Dive Comparison */
.deep-dive {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.deep-dive h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.comparison-layout {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-column {
    flex: 1;
    padding: 2.5rem;
    border-radius: 12px;
}

.comparison-column.bad {
    background: #ffe6e6;
    border: 2px solid #e74c3c;
}

.comparison-column.good {
    background: #e8f8f5;
    border: 2px solid #27ae60;
}

.comparison-column h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.comparison-column.bad li::before {
    content: '✗ ';
    color: #e74c3c;
    font-weight: bold;
}

.comparison-column.good li::before {
    content: '✓ ';
    color: #27ae60;
    font-weight: bold;
}

.comparison-column li {
    padding: 0.7rem 0;
    font-size: 1.05rem;
}

/* Trust Builders */
.trust-builders {
    background: white;
    padding: 5rem 2rem;
}

.guarantee-blocks {
    margin-top: 3rem;
}

.guarantee-item {
    background: #f8f9fa;
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    border-left: 5px solid #27ae60;
}

.guarantee-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

/* Services Reveal */
.services-reveal {
    background: #ecf0f1;
    padding: 5rem 2rem;
}

.services-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #555;
}

.services-list {
    margin-top: 4rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1.2;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.service-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
}

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

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 1.5rem 0;
}

.service-cta {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

/* Urgency Block */
.urgency-block {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    padding: 4rem 2rem;
}

.urgency-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.urgency-timer {
    background: #e74c3c;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: inline-block;
    margin-top: 1rem;
}

.urgency-timer p {
    margin: 0;
    font-size: 1.2rem;
}

#stock-counter {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Forms */
.final-form-section {
    background: white;
    padding: 5rem 2rem;
}

.final-form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.main-form {
    max-width: 650px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    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: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.submit-button {
    width: 100%;
    background: #e74c3c;
    color: white;
    padding: 1.3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* Final Reassurance */
.final-reassurance {
    background: #ecf0f1;
    padding: 3rem 2rem;
}

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

.reassurance-text {
    font-size: 1.1rem;
    margin: 1rem 0;
    color: #555;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #e74c3c;
}

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

.footer-column ul li {
    margin: 0.8rem 0;
}

.footer-column a:hover {
    color: #e74c3c;
}

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

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

.sticky-cta a {
    display: block;
    background: #e74c3c;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    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: 2rem;
}

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

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

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

/* Thanks Page Styles */
.thanks-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    padding: 3rem 2rem;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: white;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details {
    background: white;
    padding: 5rem 2rem;
}

.thanks-info-box {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-info-box h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin: 2rem 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.thanks-service-info {
    background: #e8f8f5;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #27ae60;
    margin: 2rem 0;
}

.thanks-service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#serviceName {
    color: #e74c3c;
    font-weight: 700;
}

.thanks-email-reminder {
    text-align: center;
    background: #fff3cd;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.thanks-bonus {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 4rem 2rem;
}

.bonus-box {
    text-align: center;
}

.bonus-box h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.bonus-box p {
    font-size: 1.2rem;
}

.thanks-explore {
    background: white;
    padding: 5rem 2rem;
}

.explore-links {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.explore-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.explore-card:hover {
    border-color: #e74c3c;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.explore-card p {
    color: #555;
}

/* About Page Specific */
.about-story {
    background: white;
    padding: 5rem 2rem;
}

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

.about-story p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-break {
    margin: 0;
}

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

.about-mission {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.about-values {
    background: white;
    padding: 5rem 2rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1 1 calc(50% - 2rem);
    background: #ecf0f1;
    padding: 2.5rem;
    border-radius: 10px;
    border-top: 4px solid #e74c3c;
}

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

.about-team {
    background: #ecf0f1;
    padding: 5rem 2rem;
}

.about-team h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.about-team p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-cta {
    background: linear-gradient(135deg, #e74c3c, #e67e22);
    padding: 4rem 2rem;
}

/* Services Page Specific */
.services-main {
    background: white;
    padding: 5rem 2rem;
}

.services-benefits {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 2rem);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.services-cta {
    background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 4rem 2rem;
}

/* Contact Page Specific */
.contact-main {
    background: white;
    padding: 5rem 2rem;
}

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

.contact-info {
    flex: 1;
}

.contact-form-section {
    flex: 1.3;
}

.contact-item {
    margin: 2.5rem 0;
}

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

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-item a {
    color: #e74c3c;
}

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

.contact-note {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-faq {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    background: white;
    padding: 5rem 2rem;
    margin-top: 70px;
}

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

.update-date {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page ul,
.legal-page ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin: 0.8rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

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

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

.cookies-table th {
    background: #34495e;
    color: white;
    font-weight: 600;
}

.cookies-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

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

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

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

    .service-item {
        flex-direction: column !important;
        padding: 2rem;
    }

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

    .feature-card {
        flex: 1 1 100%;
    }

    .comparison-layout {
        flex-direction: column;
    }

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

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

    .explore-links {
        flex-direction: column;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

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

    .benefit-card {
        flex: 1 1 100%;
    }

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

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

    .sticky-cta a {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content-centered h1 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .centered-heading {
        font-size: 1.8rem;
    }

    .service-item h3 {
        font-size: 1.5rem;
    }

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