* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Verdana, Geneva, Tahoma, sans-serif; /* Modern font */
    box-sizing: border-box;
}

.hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, #010758, #490d61);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem; /* Adjusted for scaling */
    font-weight: 600;
    margin: 30px 0;
    letter-spacing: 1.2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: #ff2963;
    text-shadow: 2px 2px 10px rgba(255, 41, 99, 0.5);
}

textarea {
    width: 90%; /* Adjust for smaller screens */
    max-width: 600px; /* Prevent excessive stretching */
    height: 200px;
    color: #fff;
    font-size: 1rem;
    padding: 20px;
    border: 0;
    outline: 0;
    border-radius: 10px;
    background: rgba(64, 59, 132, 0.9); /* Added transparency for a modern look */
    margin-bottom: 30px;
    resize: none;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

textarea::placeholder {
    font-size: 1rem;
    color: #ddd;
}

.row {
    width: 90%; /* Adjust for smaller screens */
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Handle smaller screens */
}

button {
    background: linear-gradient(45deg, #ff2963, #ff0057);
    color: #fff;
    font-size: 1rem;
    padding: 10px 30px;
    border: 0;
    outline: 0;
    border-radius: 35px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 15px rgba(255, 41, 99, 0.4);
}

button:hover {
    background: linear-gradient(45deg, #ff0057, #ff2963);
    transform: scale(1.05);
}

button img {
    width: 16px;
    margin-right: 10px;
}

select {
    flex: 1;
    color: #fff;
    background: rgba(64, 59, 132, 0.9);
    height: 50px;
    padding: 0 20px;
    border: 0;
    outline: 0;
    border-radius: 35px;
    appearance: none;
    background-image: url(images/dropdown.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x: calc(100% - 20px);
    background-position-y: 50%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

select:hover {
    background: rgba(64, 59, 132, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    textarea {
        height: 150px;
    }

    button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    select {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    textarea {
        width: 100%;
    }

    .row {
        gap: 10px;
    }

    button {
        font-size: 0.8rem;
    }

    select {
        font-size: 0.8rem;
    }
}
