    :root {
        --primary-color: #000;
        --secondary-color: #4d44db;
        --accent-color: #ff6584;
        --light-color: #f8f9fa;
        --dark-color: #212529;
        --success-color: #28a745;
        --error-color: #dc3545;
        --transition: all 0.3s ease;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--dark-color);
        background-color: #ffff;
    }
    
    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    .contact-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-top: 70px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .contact-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--accent-color);
        border-radius: 2px;
    }
    
    .contact-header p {
        font-size: 1.1rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .contact-content {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .contact-info {
        flex: 1;
        min-width: 300px;
    }
    
    .info-box {
        background: white;
        border-radius: 10px;
        padding: 30px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
    }
    
    .info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .info-box i {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .info-box h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--dark-color);
    }
    
    .info-box p {
        color: #666;
    }
    
    .contact-form {
        flex: 2;
        min-width: 300px;
    }
    
    .form-container {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--dark-color);
    }
    
    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 1rem;
        transition: var(--transition);
    }
    
    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
    }
    
    textarea.form-control {
        min-height: 150px;
        resize: vertical;
    }
    
    .submit-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 12px 30px;
        font-size: 1rem;
        border-radius: 6px;
        cursor: pointer;
        transition: var(--transition);
        display: inline-block;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .submit-btn:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
    }
    
    .contact-map {
        width: 100%;
        height: 400px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-map iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .alert {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 6px;
        font-weight: 500;
        text-align: center;
        animation: fadeIn 0.5s ease;
    }
    
    .alert-success {
        background-color: rgba(40, 167, 69, 0.1);
        color: var(--success-color);
        border: 1px solid rgba(40, 167, 69, 0.3);
    }
    
    .alert-error {
        background-color: rgba(220, 53, 69, 0.1);
        color: var(--error-color);
        border: 1px solid rgba(220, 53, 69, 0.3);
    }

    .filter-title {
            font-weight: 700;
            color: var(--secondary-color);
            margin-top: 5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 2.5rem;
            color: #4E0008;
            text-align: center;
            /* border-bottom: 1px solid #ddd; */
            font-weight: 600;
        }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @media (max-width: 768px) {
        .contact-content {
            flex-direction: column;
        }
        
        .contact-header h2 {
            font-size: 2rem;
        }
    }
