/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f1f1f1;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.container {
    background-color: white;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

/* Header */
header h1 {
    font-size: 2.8rem;
    color: #FF6347;
    margin-bottom: 20px;
}
header h2 {
    font-size: 2rem;
    color: #FF6347;
    margin-bottom: 20px;
}
/* Main Content */
main {
    padding-bottom: 30px;
}

/* Intro Section */
.intro p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.image {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 30px;
    display: block;
    border-radius: 8px;
}

/* Call to Action Section */
.call-to-action h2 {
    font-size: 2rem;
    color: #FF6347;
    margin-bottom: 10px;
}

.call-to-action p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.subscription-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.subscription-form input {
    padding: 10px;
    font-size: 1rem;
    width: 70%;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-right: 10px;
}

.subscription-form button {
    padding: 10px 20px;
    background-color: #00A8A8;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.subscription-form button:hover {
    background-color: #007B7B;
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}
