    /* Contact Section */
    .contact-wrapper {
        padding: 40px 20px;
        background: #f9f9f9;
        font-family: 'Segoe UI', sans-serif;
    }
    .contact-container {
        display: flex;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: auto;
        gap: 30px;
    }
    .contact-left, .contact-right {
        flex: 1 1 300px;
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    }
    .contact-title {
        font-size: 24px;
        margin-bottom: 20px;
        color: #444;
    }
    .contact-form .form-row {
        margin-bottom: 15px;
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 15px;
        transition: border-color 0.3s;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #007bff;
        outline: none;
    }
    .contact-form button {
        padding: 12px 25px;
        background-color: #007bff;
        border: none;
        color: white;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
    }
    .contact-form button:hover {
        background-color: #0056b3;
    }
    .contact-info h3 {
        margin-bottom: 15px;
        font-size: 20px;
        color: #333;
    }
    .contact-info p {
        margin-bottom: 10px;
        color: #666;
    }
    .alert {
        padding: 10px 15px;
        margin-bottom: 15px;
        border-radius: 5px;
        font-weight: bold;
    }
    .error-alert {
        background: #f8d7da;
        color: #721c24;
    }
    .success-alert {
        background: #d4edda;
        color: #155724;
    }
    /* Responsive Design */
    /*@media (max-width: 768px) {*/
    /*    .contact-container {*/
    /*        flex-direction: column;*/
    /*    }*/
    /*    .contact-left, .contact-right {*/
    /*        padding: 20px;*/
    /*    }*/
    /*}*/