/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}
 
/* Header */
.deals-header {
    background: #e1e1e1;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.deals-header img {
    width: 120px;
}

.deals-logo {
    font-size: 24px;
    font-weight: bold;
}

.deals-nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
    font-weight: bold;
}

.deals-nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.deals-hero {
    width: 100%;
    height: 300px;
    background: url('../images/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(14, 122, 101);
    font-size: 42px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Main Content */
.deals-content-container {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.deals-intro-section {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.deals-highlight {
    color: #e67e22;
    font-weight: bold;
}

.deals-benefits-section {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

.deals-topics-section {
    text-align: left;
    font-size: 18px;
    color: #555;
    padding: 10px;
}

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

.deals-topics-section li {
    background: #4CAF50;
    color: white;
    padding: 12px;
    margin: 5px 0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
}

/* Call to Action */
.deals-cta-section {
    margin-top: 20px;
    padding: 20px;
    background: #e67e22;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
}

.deals-cta-section a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: white;
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.deals-cta-section a:hover {
    background: #f4f4f4;
}

/* Footer */
.deals-footer {
    background: #4CAF50;
    padding: 15px;
    color: white;
    font-size: 14px;
}

.deals-footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
}

.deals-footer a:hover {
    text-decoration: underline;
}
