/* Hero Section */
.hero-section {
    height: 800px; /* Set height to 800px */
    background-color: #15426f; /* Blue background color */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: left;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    color: #fff;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-line {
    width: 5px;
    height: 100px;
    background-color: #ff0000; /* A festive red */
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.hero-button {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: #d90000;
}

/* Offers Section */
.offers-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.offer-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.offer-card h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.offer-button {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.offer-button:hover {
    background-color: #d90000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .offers-container {
        grid-template-columns: 1fr;
    }
}
