.contact-form {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
        }
        
.form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
.form-header i {
            font-size: 2.5rem;
            color: #0d6efd;
            margin-bottom: 15px;
        }
        
.btn-submit {
            background-color: #0d6efd;
            border: none;
            padding: 10px 25px;
            font-weight: 500;
            transition: all 0.3s;
        }
.btn-submit:hover {
            background-color: #0b5ed7;
            transform: translateY(-2px);
        }
        
.contact-info {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
        }
        
.contact-info-item {
            margin-bottom: 25px;
        }
        
.contact-info-item i {
            font-size: 1.5rem;
            color: #0d6efd;
            margin-right: 15px;
        }
        
.info-section {
            margin-top: 50px;
        }
        
.social-icons a {
            color: #495057;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
.social-icons a:hover {
            color: #0d6efd;
        }