body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #1c1f26, #252a34);
    text-align: center;
    color: white;
}

header {
    background: linear-gradient(to right, #3a1c71, #6a0572, #a4508b, #3a1c71);
    color: white;
    padding: 30px;
    font-size: 24px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.reasons {
    width: 90%;
    max-width: 1100px;
    margin: 30px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    border-radius: 10px;
}

.reasons h2 {
    color: #ffdd57;
    text-shadow: 0 0 10px rgba(255, 221, 87, 0.6);
}

.reason {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.reason img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.reason p {
    font-size: 20px;
    margin: 15px 0;
}

.final-section {
    margin-top: 50px;
    padding: 20px;
}

.final-section img {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.quote {
    font-size: 28px;
    font-weight: bold;
    color: #ffdd57;
    margin-top: 15px;
}

.quote-author {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.signup {
    width: 90%;
    max-width: 500px;
    margin: 40px auto;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    border-radius: 10px;
}

.signup form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.signup input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

.signup button {
    width: 60%;
    padding: 12px;
    background-color: #ffdd57;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 10px;
}

.signup button:hover {
    background: linear-gradient(to right, #ffee00, #667fb0);
}

.google-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: white;
    color: black;
    border: 1px solid #ccc;
    width: 60%;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.google-signup img {
    width: 25px;
    height: 25px;
}

footer {
    margin-top: 30px;
    padding: 15px;
    background: linear-gradient(to right, #667fb0, #ffee00);
    color: white;
    font-size: 16px;
}
