* {
    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: #333;
    background: #fff;
}

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

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #FF6347;
}

.navbar-brand:hover {
    color: #FF6347;
}

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

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

.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 56px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

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

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

.btn-primary {
    background: #FF6347;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #e5533d;
    transform: translateY(-2px);
}

.section {
    padding: 80px 0;
}

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

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

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

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

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.card-text {
    font-size: 16px;
    color: #666;
}

.faq-section {
    background: #f8f9fa;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 16px;
    color: #666;
    padding-left: 20px;
}

.disclaimer-box {
    background: #fff3cd;
    border-left: 4px solid #FF6347;
    padding: 20px;
    margin: 40px 0;
}

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

.disclaimer-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

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

footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #FF6347;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

.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: 0 0 15px 0;
    font-size: 14px;
}

.cookie-banner button {
    background: #FF6347;
    border: none;
    color: #fff;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-banner button:hover {
    background: #e5533d;
}

.blog-card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

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

.blog-card img {
    height: 200px;
    object-fit: cover;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-control:focus {
    border-color: #FF6347;
    box-shadow: 0 0 0 0.2rem rgba(255, 99, 71, 0.25);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section {
        padding: 40px 0;
    }
}
