body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f8f8;
    line-height: 1.6;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}
.navbar {
    background-color: #673ab7;
    color: #ffffff;
    padding: 15px 0;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
}
.navbar a:hover {
    text-decoration: underline;
}
.header {
    background-color: #673ab7;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}
.header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.cta-button {
    display: inline-block;
    background-color: #f44336;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #d32f2f;
}
.section {
    padding: 60px 0;
    text-align: center;
}
.section h2 {
    color: #673ab7;
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
}
.feature-item h3 {
    color: #673ab7;
    margin-top: 0;
}
.sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #673ab7;
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.sticky-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.sticky-banner p {
    margin: 0;
    font-size: 1.1rem;
    flex-grow: 1;
    text-align: left;
}
.sticky-banner .cta-button {
    background-color: #f44336;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1rem;
    margin-left: 20px;
}
.sticky-banner .close-button {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 20px;
}
@media (max-width: 768px) {
    .sticky-banner .container {
        flex-direction: column;
    }
    .sticky-banner p {
        text-align: center;
        margin-bottom: 10px;
    }
    .sticky-banner .cta-button, .sticky-banner .close-button {
        margin: 10px 0 0 0;
    }
}
.footer {
    background-color: #555;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}
.footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}
.footer a:hover {
    text-decoration: underline;
}

/* General Page Styling */
.content-section {
    padding: 40px 0;
    text-align: left;
}
.content-section h2 {
    text-align: center;
    margin-bottom: 30px;
}
.content-section ul {
    list-style-type: disc;
    margin-left: 20px;
}
.content-section ol {
    list-style-type: decimal;
    margin-left: 20px;
}
.content-section p {
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.contact-form textarea {
    resize: vertical;
}
.contact-form button {
    background-color: #f44336;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form button:hover {
    background-color: #d32f2f;
}

/* Countdown Timer */
.countdown-section {
    background-color: #f44336;
    color: #ffffff;
    padding: 40px 0;
}
#countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
#countdown-timer div {
    text-align: center;
}
#countdown-timer span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f8f8;
}
.faq-item {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.faq-item h3 {
    color: #673ab7;
    margin-top: 0;
}

/* Deal Buttons */
.deal-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.deal-buttons .cta-button {
    width: 100%;
    box-sizing: border-box;
}
