.contact-section {
    text-align: center;
    padding: 40px 20px;
    background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
}

.contact-section h2 {
    font-size: 32px;
    font-weight: bold;
}

.contact-section p {
    margin: 10px 0 30px;
    font-size: 16px;
}

.form-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-container input,
.message-box textarea {
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: #f0f0f0;
    font-size: 14px;
    width: 250px;
}

.message-box {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.message-box textarea {
    width: 520px;
    height: 120px;
    border-radius: 15px;
    resize: none;
}

.form-container input:focus,
.message-box textarea:focus {
    outline: none;
}

.submit-btn {
    display: block;
    margin: 0 auto;
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    background: #15b8c1;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #11949c;
}

.info-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: center;
    background: #e9f7f8;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.info-box i {
    font-size: 48px;
    background-color: #15b8c1;
    border-radius: 12px;
    padding: 5px;
}

.info-box h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.info-box p {
    margin: 5px 0;
    font-size: 16px;
    line-height: 1.5;
}