body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #f0f0f0 0%, #d0e0f0 100%);
    margin: 0;
    padding: 0;
}

.header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav__item {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav__item:hover {
    text-decoration: underline;
}

.container {
    padding: 20px;
}

.main_content {
    text-align: center;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #510a8b;
}

.content {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.promotions__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

.promotion__item {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.promotion__item h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #510a8b;
}

.promotion__item p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #333;
}

.button__buy {
    margin-top: 1.25rem;
    padding: 0.75rem 1.25rem;
    background-color: #e91717;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button__buy:hover {
    background-color: #a50f0f;
}
/*---FOOTER--*/

.footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 20px;
    text-align: center;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer__section {
    flex: 1;
    margin: 0 20px;
}

.footer__section h3 {
    margin-bottom: 15px;
    color: #fff;
}

.footer__section p {
    margin: 5px 0;
}

.footer__section a {
    color: #ddd;
    text-decoration: none;
}

.footer__section a:hover {
    text-decoration: underline;
}

.social__links {
    display: flex;
    justify-content: center;
    gap: 1.7rem;
}

.social__links i {
    font-size: 30px;
}

.social__link img {
    width: 24px;
    height: 24px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subscribe-form input {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    width: 80%;
}

.subscribe-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #ff6600;
    color: #fff;
    cursor: pointer;
}

.subscribe-form button:hover {
    background-color: #e55d00;
}

.footer__bottom {
    border-top: 1px solid #444;
    padding-top: 10px;
}

.redirect{
    color: #fff;
}