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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #212529;
    background-color: #fff;
}

.site-header {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #dc3545;
    letter-spacing: -0.5px;
}

.navbar-light .navbar-nav .nav-link {
    color: #212529;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #dc3545;
}

.hero-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #dc3545;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-text {
    font-size: 1.125rem;
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.hero-image {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.categories-section,
.why-choose-section,
.content-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.category-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(220,53,69,0.2);
}

.category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.category-content p {
    color: #495057;
    margin-bottom: 1.5rem;
}

.feature-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 4px 16px rgba(220,53,69,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #dc3545;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #495057;
    margin-bottom: 0;
}

.cta-section {
    padding: 80px 0;
    background-color: #dc3545;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #fff;
}

.page-header {
    padding: 60px 0 40px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.page-header .lead {
    font-size: 1.25rem;
    color: #6c757d;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: #dc3545;
    text-decoration: none;
}

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

.breadcrumb-item.active {
    color: #6c757d;
}

.category-card-large {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    height: 400px;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: #fff;
}

.category-overlay h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.category-overlay p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.category-intro {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.category-intro p {
    margin-bottom: 1rem;
}

.category-intro p:last-child {
    margin-bottom: 0;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(220,53,69,0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.product-content p {
    color: #495057;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.product-features li:before {
    content: "✓";
    color: #dc3545;
    font-weight: 700;
    margin-right: 0.5rem;
}

.product-features li:last-child {
    border-bottom: none;
}

.info-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.info-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.info-section h4:first-child {
    margin-top: 0;
}

.info-section p {
    color: #495057;
    margin-bottom: 1rem;
}

.info-section ul {
    margin-bottom: 1rem;
}

.info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    height: 100%;
}

.info-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.info-box p {
    color: #495057;
    margin-bottom: 0;
}

.cta-box {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid #dc3545;
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    color: #495057;
    margin-bottom: 2rem;
}

.disclaimer-box {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
}

.disclaimer-box p {
    margin-bottom: 0;
    color: #856404;
}

.disclaimer-box a {
    color: #dc3545;
    font-weight: 600;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.contact-info-box p {
    color: #495057;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-top: 2rem;
}

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

.contact-item h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #495057;
    margin-bottom: 0;
}

.contact-item a {
    color: #dc3545;
    text-decoration: none;
}

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

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

.faq-item h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #495057;
    margin-bottom: 0;
}

.form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.25);
}

.form-check-input:checked {
    background-color: #dc3545;
    border-color: #dc3545;
}

.form-check-input:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.25);
}

.thank-you-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.thank-you-box {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.thank-you-box h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.thank-you-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thank-you-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.thank-you-info ul {
    margin-bottom: 0;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: #495057;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content ul li {
    color: #495057;
    margin-bottom: 0.5rem;
}

.site-footer {
    background-color: #212529;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.site-footer h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.site-footer p {
    color: #adb5bd;
    margin-bottom: 0.5rem;
}

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

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

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc3545;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #495057;
    text-align: center;
}

.footer-bottom p {
    color: #6c757d;
    margin-bottom: 0;
}

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

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    color: #fff;
    flex: 1;
}

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

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

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .category-overlay h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .categories-section,
    .why-choose-section,
    .content-section {
        padding: 60px 0;
    }

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

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

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

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

    .cookie-buttons .btn {
        width: 100%;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .thank-you-box {
        padding: 2rem 1rem;
    }

    .thank-you-box h1 {
        font-size: 2rem;
    }
}
