/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;500&display=swap');

/* General Styles */
body {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    background-color: #E0FFFF;
    color: ##7FFF00;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #7FFFD4;
}

/* Offer Section */
#offer {
    background: url('https://example.com/background-pattern.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffdd44;
    padding: 20px;
    background-color: #004422;
}

#offer .btn {
    display: inline-block;
    padding: 15px 25px;
    background-color: #ffbb33;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

#offer .btn:hover {
    background-color: #cc8800;
}

/* Sections Styling */
section {
    padding: 40px 20px;
    background: white;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
}

/* Article Styling */
article {
    border-left: 5px solid #005a32;
    padding: 20px;
    background: #fff7d6;
    font-size: 18px;
    line-height: 1.6;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

input[type="email"] {
    width: 80%;
    padding: 10px;
    border: 2px solid #005a32;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff2e0;
    color: #1a1a1a;
}

button {
    padding: 10px 20px;
    background-color: #005a32;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #003e23;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    #offer {
        height: auto;
        padding: 50px 20px;
    }
    
    input[type="email"] {
        width: 100%;
    }
}
