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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

a {
    color: #5a9fd4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3d7cb3;
    text-decoration: none;
}

.navbar {
    background: linear-gradient(135deg, #f8fbfd 0%, #e8f4fc 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(90, 159, 212, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3d7cb3 !important;
}

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

.nav-link:hover {
    color: #5a9fd4 !important;
}

.hero-section {
    background: linear-gradient(135deg, #e8f4fc 0%, #d4ebf7 50%, #c0e2f3 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    color: #4a5568;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(90, 159, 212, 0.2);
}

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

.content-section:nth-child(even) {
    background: linear-gradient(135deg, #f8fbfd 0%, #f0f7fc 100%);
}

.content-section h2 {
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: #3d7cb3;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-section p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.content-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(90, 159, 212, 0.15);
    margin-bottom: 1.5rem;
}

.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(90, 159, 212, 0.1);
    height: 100%;
    border: 1px solid #e8f4fc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(90, 159, 212, 0.2);
}

.limiti-section {
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f4fc 100%);
    padding: 3rem 0;
    border-top: 3px solid #5a9fd4;
    border-bottom: 3px solid #5a9fd4;
}

.limiti-section h2 {
    color: #3d7cb3;
    margin-bottom: 1.5rem;
}

.limiti-section ul {
    list-style: none;
    padding: 0;
}

.limiti-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.limiti-section li:before {
    content: "•";
    color: #5a9fd4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cta-section {
    background: linear-gradient(135deg, #e8f4fc 0%, #d4ebf7 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.btn-info-read {
    background: linear-gradient(135deg, #5a9fd4 0%, #3d7cb3 100%);
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-info-read:hover {
    background: linear-gradient(135deg, #3d7cb3 0%, #2d6a9f 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 159, 212, 0.3);
}

.page-header {
    background: linear-gradient(135deg, #e8f4fc 0%, #d4ebf7 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: #2d3748;
    font-size: 2.2rem;
    font-weight: 700;
}

.page-content {
    padding: 3rem 0;
}

.page-content h2 {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    color: #3d7cb3;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.page-content p,
.page-content li {
    color: #4a5568;
}

.page-content ul {
    margin-bottom: 1rem;
}

.contact-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(90, 159, 212, 0.1);
    border: 1px solid #e8f4fc;
}

.contact-form .form-control {
    border: 2px solid #e8f4fc;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #5a9fd4;
    box-shadow: 0 0 0 0.2rem rgba(90, 159, 212, 0.25);
}

.form-disclaimer {
    background: #f8fbfd;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #4a5568;
    border-left: 3px solid #5a9fd4;
}

.educational-notice {
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f4fc 100%);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #d4ebf7;
}

.educational-notice p {
    margin: 0;
    color: #3d7cb3;
    font-weight: 500;
}

footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #e2e8f0;
    padding: 3rem 0 1.5rem;
}

footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

footer a {
    color: #a0aec0;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #5a9fd4;
}

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

footer li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
}

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

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

.cookie-banner p {
    margin-bottom: 1rem;
    color: #4a5568;
}

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

.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

.thank-you-section h1 {
    color: #3d7cb3;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thank-you-section p {
    color: #4a5568;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2.5rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2.5rem 0;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    footer {
        text-align: center;
    }
    
    footer .col-md-4 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .content-image {
        height: 180px;
    }
}
