*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
.hero{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg,#010758,#490d61);
}
.hero h1{
    color: #fff;
    font-size: 45px;
    font-weight: 500;
    margin-top: -50px;
    margin-bottom: 50px;
}
.hero h1 span{
    color: #ff2963;
}
textarea{
    width: 600px;
    height: 250px;
    background: #403d84;
    font-size: 15px;
    border: none;
    outline: none;
    padding: 20px;
    border-radius: 10px;
    resize: none;
    margin-bottom: 30px;
    color: #ddd;
}
textarea::placeholder{
    font-size: 15px;
    color: #ddd;
}
.row{
    width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
}
button{
    background: #ff2963;
    color: #fff;
    font-size: 15px;
    padding: 10px 30px;
    border-radius: 35px;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
}
button img{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
select{
    height : 50px;
    flex: 1;
    background: #403d84;
    color: #fff;
    padding: 0px 20px;
    outline: none;
    border: none;
    border-radius: 35px;
    appearance: none;
    background-image: url('dropdown.png');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: right 20px center;
}

/* -------- Responsive Design -------- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    textarea {
        width: 90%;
        height: 200px;
        font-size: 14px;
    }

    .row {
        width: 90%;
        flex-direction: column;
        gap: 15px;
    }

    button {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 12px;
    }

    select {
        width: 100%;
        font-size: 14px;
        height: 45px;
    }
}

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

    textarea {
        height: 150px;
        font-size: 13px;
    }

    button {
        font-size: 13px;
        padding: 10px;
    }

    select {
        font-size: 13px;
        height: 40px;
    }
}
