.contact-area {
    background-color: #FAFAFF;
}
.contact-info h2 {
    color: #2D3748;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.contact-info p {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}
.contact-item {
    margin-bottom: 2rem;
}
.contact-item div:first-child {
    background: #EBF4FF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}
.contact-item p:first-of-type {
    color: #2D3748;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}
.contact-item p:last-of-type {
    color: #4A5568;
    margin: 0;
}
.contact-form {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.contact-form h3 {
    color: #2D3748;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.contact-form label {
    display: block;
    color: #2D3748;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 0.875rem;
}
.contact-form textarea {
    font-family: inherit;
}
.contact-form button {
    margin-top: 20px;
    background: #355EFC;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.contact-form button:hover {
    background: #2B6CB0;
}
.success-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #E6FFFA;
    border: 1px solid #9AE6B4;
    border-radius: 8px;
    color: #22543D;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}
.success-icon {
    width: 24px;
    height: 24px;
    background: #38A169;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}