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

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #222;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

header .navbar {
    padding: 1rem 0;
}

header .navbar-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
    text-decoration: none;
}

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

header .nav-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

header .nav-link:hover {
    color: #ff8c00;
}

main {
    margin-top: 80px;
}

.hero-section {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
}

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

.hero-section p {
    font-size: 1.25rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.content-section {
    padding: 60px 0;
}

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

.content-section h2 {
    color: #ff8c00;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: #ff8c00;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 1.5rem 0;
}

.content-section p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.content-section ul, .content-section ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #ff8c00;
    border-color: #ff8c00;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e67e00;
    border-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,140,0,0.3);
}

.btn-outline-primary {
    border-color: #ff8c00;
    color: #ff8c00;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.disclaimer-box {
    background-color: #fff3e0;
    border-left: 4px solid #ff8c00;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.disclaimer-box h3 {
    color: #ff8c00;
    margin-top: 0;
}

.disclaimer-box p {
    margin-bottom: 0.5rem;
}

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

.faq-item h3 {
    color: #222;
    font-size: 1.25rem;
}

.faq-item p {
    color: #555;
}

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

footer h4 {
    color: #ff8c00;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

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

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

footer ul li {
    margin-bottom: 0.5rem;
}

footer .footer-bottom {
    border-top: 1px solid #444;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.contact-form {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

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

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

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

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

.cookie-banner .btn {
    margin-right: 1rem;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr 1fr;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

.alert-info {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    color: #0d47a1;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: #ff8c00;
    margin-bottom: 1rem;
}
