body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f0f0f0;
    transition: background-color 0.3s, color 0.3s;
}

.navbar {
    background-color: #ffb347; /* Orange */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s, transform 0.3s;
}

.navbar:hover {
    background-color: #ff8833; /* Darker Orange */
    transform: scale(1.005);
}

.logo {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

.nav-links li a:hover {
    color: #ffdd57; /* Yellow */
    transform: scale(1.1);
}

.banner {
    background: linear-gradient(45deg, #ffdd57, #ffb347, #ff6961, #ad29be); /* Yellow, Orange, Red, Purple */
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    transition: background 0.5s, transform 0.5s;
}

.banner:hover {
    transform: scale(1.05);
}

.banner h1 {
    font-size: 48px;
    margin: 0;
}

.banner p {
    font-size: 20px;
    margin: 10px 0 20px;
}

.cta-button {
    background-color: #ff6961; /* Red */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #ff3b30;
    transform: scale(1.3);
}

.info-section {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #fff;
    transition: background-color 0.3s;
}

.info-box {
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.info-box:hover {
    transform: scale(1.1);
}

.info-box h2 {
    font-size: 24px;
    color: #ff6961; /* Red */
    margin-bottom: 10px;
    transition: color 0.3s;
}

.info-box h2:hover {
    font-size: 24px;
    color: #c405ab; /* Red */
    margin-bottom: 10px;
    transition: color 0.3s;
}

.info-box p {
    font-size: 16px;
    color: #666;
    transition: color 0.3s;
}

footer {
    background-color: #ad29be; /* Purple */
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    bottom: 0;
    transition: background-color 0.3s;
}
/* Styles for the entire website */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 1em;
}

.logo {
    color: #fff;
    font-size: 1.5em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1em;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

.banner, .email-finder-section {
    text-align: center;
    padding: 2em;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2em auto;
    max-width: 800px;
    border-radius: 10px;
}

.cta-button, #find-email {
    background-color: #ffc400;
    color: #fff;
    padding: 0.5em 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover, #find-email:hover {
    background-color: #e77700;
    transform: scale(1.2);
    transition: background-color 0.3s, transform 0.3s;
}

.email-finder-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    margin-top: 1em;
}

.email-finder-form label {
    font-weight: bold;
}

.email-finder-form input {
    padding: 0.5em;
    border: 1px solid #ffffff;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
}

#email-result {
    margin-top: 1em;
    color: #333;
}



.cta-button {
    background-color: #ff6961; /* Red */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #ff3b30;
    transform: scale(1.3);
}

.info-section {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #fff;
    transition: background-color 0.3s;
}

.info-box {
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.info-box:hover {
    transform: scale(1.1);
}

.info-box h2 {
    font-size: 24px;
    color: #ff6961; /* Red */
    margin-bottom: 10px;
    transition: color 0.3s;
}

.info-box p {
    font-size: 16px;
    color: #666;
    transition: color 0.3s;
}

footer {
    background-color: #ad29be; /* Purple */
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    bottom: 0;
    transition: background-color 0.3s;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    transition: background-color 0.3s;
}

.testimonials-section h2 {
    font-size: 32px;
    color: #ff6961;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.testimonial {
    background-color: #f0f0f0;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.testimonial:hover {
    transform: scale(1.05);
}

.testimonial p {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px;
    transition: color 0.3s;
}

/* Features Showcase Section */
.features-showcase {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    transition: background-color 0.3s;
}

.features-showcase h2 {
    font-size: 32px;
    color: #ff6961;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.feature {
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: scale(1.05);
}

.feature h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.feature p {
    font-size: 16px;
    color: #666;
    transition: color 0.3s;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    transition: background-color 0.3s;
}

.contact-form-section h2 {
    font-size: 32px;
    color: #ff6961;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-form label {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    transition: color 0.3s;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6961;
    outline: none;
}

.contact-form button {
    background-color: #ff6961; /* Red */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-form button:hover {
    background-color: #ff3b30;
    transform: scale(1.1);
}
