body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #212529;
    padding-top: 70px;
}

.navbar-brand {
    font-size: 1.5rem;
}

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

.page-header {
    padding: 100px 0 60px;
    margin-bottom: 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.custom-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
}

.target-card {
    transition: transform 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
}

.contact-info h5 {
    font-size: 1.1rem;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d4edda;
    border-radius: 50%;
}

.policy-content h2 {
    color: #dc3545;
    font-size: 1.75rem;
}

.policy-content h4 {
    color: #495057;
    font-size: 1.25rem;
    margin-top: 20px;
}

.policy-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-box {
    border-left: 4px solid #dc3545;
}

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

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

.cookie-banner a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #f8f9fa;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #ffffff;
}

.text-danger {
    color: #dc3545 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.15) !important;
}

.footer {
    margin-top: 0;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #dc3545 !important;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}
