body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f9;
}

.container {
    width: 90%;
    max-width: 800px;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.header {
    margin-bottom: 20px;
}

.brand-title {
    font-size: 2.5rem;
    color: #ff0000;
}

.tagline {
    font-size: 1.2rem;
    color: #333;
}

.content {
    margin-top: 20px;
}

.offer-title {
    font-size: 2rem;
    color: #333;
}

.offer-description {
    margin: 10px 0 20px;
    font-size: 1rem;
    color: #666;
}

.cta-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #ff4500;
    border: none;
    border-radius: 5px;
    
   
}

.cta-button:hover {
    background-color: 
}

.contact {
    margin-top: 40px;
    text-align: left; /* Align form fields to the left */
}

.contact h2 {
    font-size: 1.6rem;
    color: #333;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact label {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact input[type="text"] {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact button {
    width: 100px;
    padding: 8px;
    background-color: #ff4500;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact button:hover {
    background-color: #e63e00;
}

.footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #999;
}

@media screen and (max-width: 600px) {
    .brand-title {
        font-size: 2rem;
    }

    .offer-title {
        font-size: 1.5rem;
    }
}
