  .contact-section {
        padding: 60px 0;
        background-color: #fff;
    }
    
    .contact-form {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-form h2 {
        font-size: 28px;
        margin-bottom: 30px;
        color: #333;
        position: relative;
        padding-bottom: 15px;
    }
    
    .contact-form h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #28a745;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #555;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        transition: border-color 0.3s;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #28a745;
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }
    
    .submit-btn {
        background-color: #333;
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .submit-btn:hover {
        background-color: #28a745;
    }
    
    @media (max-width: 768px) {
        .contact-form {
            max-width: 100%;
        }
    }