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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0dede 100%);
    min-height: 100vh;
}

.header-main {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

.navbar-brand:hover {
    color: #8b7d7d;
}

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

.nav-link:hover,
.nav-link.active {
    color: #8b7d7d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
}

.hero-disclaimer {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.page-header {
    background: #ffffff;
    padding: 3rem 0;
    margin-bottom: 0;
}

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

.page-header .lead {
    font-size: 1.2rem;
    color: #777;
}

.content-section {
    padding: 4rem 0;
    background: #ffffff;
}

.content-section.bg-light {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.info-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.info-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.value-box {
    padding: 2rem 1rem;
}

.value-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #555;
    line-height: 1.6;
}

.disclaimer-section {
    background: #f9f9f9;
}

.disclaimer-box {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    border-radius: 8px;
}

.disclaimer-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.btn-custom {
    background: linear-gradient(135deg, #8b7d7d 0%, #6d5f5f 100%);
    border: none;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-custom:hover {
    background: linear-gradient(135deg, #6d5f5f 0%, #5a4d4d 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-section {
    padding: 5rem 0;
}

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

.contact-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-text {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    color: #a0a0a0;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}

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

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

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

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

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #3a4a5a;
    color: #a0a0a0;
    font-size: 0.9rem;
}

img.rounded {
    border-radius: 8px;
}

.table {
    background: #ffffff;
}

.table thead th {
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 2.5rem 0;
    }
}
