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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    padding-top: 70px;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF9800 !important;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF9800 !important;
}

.hero-section {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.85)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-light {
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
}

.content-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 25px;
    text-align: center;
    height: 100%;
}

.product-card img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.95rem;
    color: #666;
}

.btn-primary {
    background-color: #FF9800;
    border-color: #FF9800;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e68900;
    border-color: #e68900;
}

.btn-outline-primary {
    color: #FF9800;
    border-color: #FF9800;
}

.btn-outline-primary:hover {
    background-color: #FF9800;
    border-color: #FF9800;
    color: #fff;
}

.table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.table thead {
    background-color: #FF9800;
    color: #fff;
}

.table th, .table td {
    padding: 15px;
    vertical-align: middle;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.glossary-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 20px;
    margin-bottom: 15px;
}

.glossary-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF9800;
    margin-bottom: 10px;
}

.glossary-item p {
    color: #666;
    margin: 0;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tip-icon {
    width: 30px;
    height: 30px;
    background-color: #FF9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
    flex-shrink: 0;
}

.cta-section {
    background-color: #FF9800;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 40px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: #FF9800;
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.25);
}

.contact-info {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 40px;
    height: 100%;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 15px;
}

.disclaimer-box {
    background: #fff8e1;
    border-left: 4px solid #FF9800;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.disclaimer-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.disclaimer-box p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

footer h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FF9800;
}

footer p, footer a {
    color: #ccc;
    font-size: 0.95rem;
}

footer a:hover {
    color: #FF9800;
    text-decoration: none;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin-top: 15px;
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background-color: #FF9800;
    color: #fff;
    border-radius: 15px 15px 0 0;
    border: none;
}

.modal-header .close {
    color: #fff;
    opacity: 1;
}

.modal-body {
    padding: 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-banner p {
    margin-bottom: 15px;
}

.cookie-banner .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

.success-message {
    background: #4caf50;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.two-column {
    display: flex;
    align-items: center;
    gap: 30px;
}

.two-column img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.two-column.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .two-column {
        flex-direction: column;
    }
    
    .two-column.reverse {
        flex-direction: column;
    }
    
    .two-column img {
        max-width: 100%;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .contact-form, .contact-info {
        padding: 25px;
    }
}
