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

body {
    font-family: 'Lato', 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #FF6F61;
    text-decoration: none;
}

.navbar-brand:hover {
    color: #FF6F61;
    text-decoration: none;
}

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

.navbar-nav .nav-link:hover {
    color: #FF6F61;
}

.hero-block {
    margin-top: 80px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/hero.jpg') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
}

.hero-block h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-block p {
    font-size: 20px;
    margin-bottom: 30px;
}

.content-section {
    padding: 60px 0;
    background-color: #fff;
}

.content-section:nth-child(even) {
    background-color: #f9f9f9;
}

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

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #FF6F61;
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #FF6F61;
    border-color: #FF6F61;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #e85d52;
    border-color: #e85d52;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255,111,97,0.3);
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
}

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

.card-img-top {
    border-radius: 10px 10px 0 0;
    height: 250px;
    object-fit: cover;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.product-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

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

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #FF6F61;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.disclaimer-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FF6F61;
}

.footer p, .footer a {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer a:hover {
    color: #FF6F61;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #555;
    font-size: 14px;
    color: #ccc;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background-color: #e85d52;
}

.btn-decline {
    background-color: #555;
    color: #fff;
}

.btn-decline:hover {
    background-color: #444;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #FF6F61;
    box-shadow: 0 0 0 0.2rem rgba(255,111,97,0.25);
}

.policy-content {
    max-width: 900px;
    margin: 100px auto 60px;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.policy-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.policy-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #FF6F61;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.info-box {
    background-color: #f0f8ff;
    border-left: 4px solid #FF6F61;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.image-section {
    text-align: center;
    margin: 40px 0;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

@media (max-width: 768px) {
    .hero-block h1 {
        font-size: 32px;
    }

    .hero-block p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .policy-content {
        margin: 80px 20px 40px;
        padding: 20px;
    }

    .policy-content h1 {
        font-size: 28px;
    }

    .policy-content h2 {
        font-size: 22px;
    }
}
