:root {
    --primary-color: #FF7F50;
    --primary-hover: #E66F45;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --border-color: #DEE2E6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-brand .brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255,127,80,0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-secondary {
    background-color: #6C757D;
    border-color: #6C757D;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5A6268;
    border-color: #545B62;
}

.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
}

.hero-section h1 {
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.content-section {
    padding: 4rem 0;
}

.content-section.bg-light {
    background-color: var(--bg-light);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.page-header {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header .lead {
    color: var(--text-light);
    margin-bottom: 0;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card .percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.myth-card {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
}

.myth-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.product-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.product-card img {
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-card .btn {
    margin-top: 1rem;
}

.reference-list ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.reference-list li {
    margin-bottom: 0.75rem;
}

.disclaimer-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 2rem;
}

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

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.disclaimer-section {
    background-color: #FFF5F0;
    padding: 3rem 0;
    border-top: 2px solid var(--primary-color);
}

.disclaimer-section h2 {
    margin-bottom: 1.5rem;
}

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

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border-radius: 0.25rem;
    border: 1px solid var(--border-color);
    padding: 0.75rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255,127,80,0.25);
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.table {
    margin-top: 1rem;
}

.table thead th {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

footer p {
    color: #BDC3C7;
    margin-bottom: 0.75rem;
}

footer a {
    color: #ECF0F1;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #BDC3C7;
    font-style: italic;
}

.copyright {
    color: #95A5A6;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495E;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #fff;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner .btn {
    padding: 0.5rem 1.5rem;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 2rem 0 1rem;
    }
    
    .cookie-banner .col-md-4 {
        text-align: left;
        margin-top: 1rem;
    }
    
    .cookie-banner .btn {
        width: 48%;
        margin-bottom: 0.5rem;
    }
}
