.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-form {
    background-color: #ade8f4;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid #90e0ef;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 32px rgba(0, 180, 216, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #03667a;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #055c6b;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #003049;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00b4d8;
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn {
    background-color: #ade8f4;
    color: #003049;
    padding: 0.8rem 2rem;
    border: 1px solid #90e0ef;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 32px rgba(0, 180, 216, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #0077b6, #00b4d8);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover {
    background: linear-gradient(90deg, #0077b6, #00b4d8);
    color: #fdffb6;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 180, 216, 0.3);
    border-color: #0077b6;
}

.btn:hover::before {
    width: 100%;
}

.contact-info {
    text-align: center;
    color: #0077b6;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #ccc;
}

.section-title {
    color: #00b4d8;
}

.right {
    font-size: 18px;
    font-weight: bold;
}