@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.hero {
    width: 100%;
    min-height: 100vh;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #2c3e50;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.hero h1 span {
    color: #3498db;
}

textarea {
    width: 100%;
    max-width: 600px;
    height: 250px;
    background: #ffffff;
    color: #2c3e50;
    font-size: 15px;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    resize: none;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

textarea::placeholder {
    font-size: 16px;
    color: #999;
}

.row {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
}

button {
    background: #3498db;
    color: #fff;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.1);
    transition: background 0.3s ease;
}

button:hover {
    background: #2980b9;
}

button img {
    width: 16px;
    margin-right: 8px;
}

select {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    color: #2c3e50;
    border: 1px solid #ccc;
    height: 50px;
    padding: 0 20px;
    border-radius: 30px;
    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%;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 600px) {
    .hero h1 {
        font-size: 32px;
        text-align: left;
        width: 100%;
        max-width: 600px;
        padding-left: 20px;
    }

    .row {
        flex-direction: column;
        gap: 15px;
    }

    select {
        width: 100%;
        margin-bottom: 5px;
    }

    button {
        width: 100%;
        justify-content: center;
    }
}
