body {
    font-family: Arial, sans-serif;
}

.hero {
    height: 800px;
    background: linear-gradient(rgba(10,28,43,0.85), rgba(0,116,217,0.85)),
                url('img/hero-nexovolt.png');
    background-size: cover;
    background-position: right center;
    color: white;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 80px 20px;
        text-align: center;
    }
}

.highlight {
    color: #5AC6A7;
}

.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about {
    background-color: #f5f5f5;
}

.contact {
    background: #0A1C2B;
    color: white;
}

footer {
    background: #000;
    color: #fff;
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: rgba(10, 28, 43, 0.98);
    color: #ffffff;
    border: 1px solid rgba(90, 198, 167, 0.35);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 20px;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner__text h2 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.cookie-banner__text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner__text a {
    color: #5AC6A7;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner .btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
}

.cookie-banner .btn-outline-light:hover {
    background-color: #ffffff;
    color: #0A1C2B;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner__actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-banner__actions .btn {
        width: 100%;
    }
}

.text-justify {
    text-align: justify;
}