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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafaf8;
}

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

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

a:hover {
    color: #0d3a6b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    border-top: 3px solid #1a5490;
}

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

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

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

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

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

.cookie-banner button {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #1a5490;
    color: #fff;
}

.btn-accept:hover {
    background: #0d3a6b;
}

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

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

/* Navigation */
.nav-minimal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
    color: #1a5490;
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c2c2c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #2c2c2c;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Editorial Container - Main Archetype */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Hero Section */
.editorial-hero {
    margin-bottom: 4rem;
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
    font-style: italic;
    line-height: 1.5;
}

.hero-image {
    margin: 2.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-image img {
    width: 100%;
}

/* Editorial Sections */
.editorial-intro,
.editorial-story,
.editorial-insight,
.editorial-problem,
.editorial-reveal,
.editorial-testimonial,
.editorial-transformation,
.editorial-urgency,
.editorial-services,
.editorial-form,
.editorial-final {
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.inline-image {
    margin: 2.5rem 0;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.inline-cta {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #1a5490;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid #1a5490;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    background: #1a5490;
    color: #fff;
}

/* Insight Box */
.insight-box {
    background: #f0f4f8;
    padding: 2.5rem;
    border-left: 5px solid #1a5490;
    margin: 2rem 0;
    border-radius: 4px;
}

.insight-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.insight-box p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Problem Section */
.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a5490;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a5490;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
}

.cta-button:hover {
    background: #0d3a6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 84, 144, 0.4);
}

.cta-button-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: #1a5490;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(26, 84, 144, 0.35);
}

.cta-button-large:hover {
    background: #0d3a6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(26, 84, 144, 0.45);
}

/* Reveal Grid */
.reveal-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.reveal-item {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.reveal-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.reveal-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #1a5490;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-bottom: 1rem;
}

.reveal-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.reveal-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Testimonial */
.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    padding: 2.5rem;
    background: #f8f9fa;
    border-left: 5px solid #1a5490;
    margin: 2.5rem 0;
    line-height: 1.8;
    color: #333;
}

.testimonial-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #1a5490;
}

/* Urgency Box */
.urgency-box {
    background: linear-gradient(135deg, #1a5490 0%, #0d3a6b 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.urgency-box p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Services Section */
.services-intro {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #555;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

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

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffc107;
    color: #1a1a1a;
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.4);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.service-desc {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5490;
    margin: 1.5rem 0;
}

.service-select {
    width: 100%;
    padding: 1rem 2rem;
    background: #1a5490;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: #0d3a6b;
    transform: translateY(-2px);
}

/* Form Styles */
.form-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.charisma-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    padding: 1.2rem 2.5rem;
    background: #1a5490;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
}

.submit-button:hover {
    background: #0d3a6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 84, 144, 0.4);
}

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

.sticky-button {
    display: block;
    padding: 1rem 2rem;
    background: #1a5490;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.4);
    transition: all 0.3s ease;
}

.sticky-button:hover {
    background: #0d3a6b;
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(26, 84, 144, 0.5);
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 3rem 5%;
    margin-top: 5rem;
}

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

.footer-brand h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-legal h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.6rem;
}

.footer-links a,
.footer-legal a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

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

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* About Page */
.about-content {
    max-width: 720px;
}

.about-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-text h2,
.about-philosophy h2,
.about-approach h2,
.about-results h2,
.about-team h2,
.about-cta h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    color: #1a5490;
}

.about-text p,
.about-philosophy p,
.about-approach p,
.about-team p,
.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-philosophy blockquote {
    font-size: 1.3rem;
    font-style: italic;
    padding: 2rem;
    background: #f0f4f8;
    border-left: 5px solid #1a5490;
    margin: 2rem 0;
    color: #333;
}

.approach-list {
    list-style: none;
    padding-left: 0;
}

.approach-list li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
    font-size: 1.2rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 1.5rem;
    background: #f0f4f8;
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
}

/* Services Page */
.services-intro-section {
    margin-bottom: 3rem;
}

.intro-large {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #1a5490;
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffc107;
    color: #1a1a1a;
    padding: 0.7rem 1.5rem;
    font-weight: 700;
    border-radius: 25px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.service-header {
    padding: 2rem 2.5rem 1rem;
    background: #f8f9fa;
}

.service-header h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.service-level {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

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

.service-body {
    padding: 2.5rem;
}

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

.service-body h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #1a1a1a;
}

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

.service-includes li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
}

.service-includes li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-size: 1.2rem;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f0f4f8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-label {
    font-size: 1.1rem;
    color: #666;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a5490;
}

.urgent-card {
    border: 3px solid #ffc107;
}

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

.services-faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a5490;
}

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

.faq-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #1a5490;
}

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

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

.services-cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: #f0f4f8;
    border-radius: 10px;
}

.services-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta-section p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info h2,
.contact-map h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

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

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

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

.contact-map p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
    font-size: 0.95rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
}

.contact-extra {
    margin-top: 3rem;
}

.contact-extra h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a5490;
    text-align: center;
}

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

.extra-item {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.extra-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a5490;
}

.extra-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a5490;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.step-item {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #1a5490;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.step-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.thanks-service-info {
    margin: 3rem 0;
    padding: 2rem;
    background: #f0f4f8;
    border-radius: 8px;
}

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

.selected-service {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #0d3a6b;
}

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

.btn-secondary:hover {
    background: #1a5490;
    color: #fff;
}

.thanks-quote {
    margin-top: 3rem;
}

.thanks-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.thanks-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #1a5490;
}

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

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

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

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #1a1a1a;
}

.legal-section p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333;
}

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

.legal-section li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

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

.cookies-table th {
    background: #f0f4f8;
    font-weight: 700;
    color: #1a5490;
}

.cookies-table td {
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

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

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

    .section-title {
        font-size: 1.6rem;
    }

    .reveal-grid {
        gap: 1.5rem;
    }

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

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

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .sticky-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    .contact-content {
        flex-direction: row;
    }
}
