#content {
    padding-top: 220px;
    padding-bottom: 30px;
}

.form-contact label {
    font-size: 16px;
    font-weight: 400;
}
.form-contact input,
.form-contact textarea {
    background-color: white;
    height: 41px;
    border-radius: 12px;
}
.form-contact input::placeholder,
.form-contact textarea::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #d1d5db;
}
.form-contact button {
    background-color: #1f5d35;
    color: white;
    font-size: 14px;
    font-weight: 400;
    border-radius: 14px;
    height: 46px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    margin-left: 5px;
}

.contact-card {
    background-color: white;
    border-radius: 16px;
    padding: 16px;
    height: 216px;
}
.contact-card .icon {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    color: #1f5d35;
    border: 2px solid #1f5d35;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.contact-card .info {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 400;
}

/* Mobile Version */
@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
    }
    .hero-section p,
    .hero-section h1 {
        margin-top: 20px;
    }
    .hero-section h1 {
        font-size: 34px;
    }
    .hero-section p {
        font-size: 18px;
        margin-top: 12px;
    }
    #content {
        padding-top: 40px;
        padding-bottom: 10px;
    }
    .personal-name {
        font-size: 36px;
    }
    .form-contact button {
        width: 100%;
        margin-top: 10px;
    }
}
