  @font-face {
            font-family: 'PlayfairLocal';
            src: url('/e_commerce_store/Playfair_Display/static/PlayfairDisplay-Regular.ttf') format('truetype');
            font-weight: normal;
        }

        @font-face {
            font-family: 'PlayfairLocal';
            src: url('/e_commerce_store/Playfair_Display/static/PlayfairDisplay-Regular.ttf') format('truetype');
            font-weight: bold;
        }
        
        body {
            font-family: 'PlayfairLocal', sans-serif;
            background: linear-gradient(180deg, #121212 0%, #1E1E1E 100%);
            color: #e0e0e0;
        }
        
        /* تنسيقات الـ Navbar المطلوبة */
        .navbar {
            background-color: #1a1a1a !important;
            border-bottom: 1px solid #c39248 !important;
        }
        
        .navbar-brand, .nav-link {
            color: #a3762f !important;
        }
        
        .nav-link:hover {
            color: #c39248 !important;
        }
        
        /* تنسيقات نموذج الاتصال */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem;
            background-color: #1a1a1a;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid #333;
            margin-top: 2rem;
        }
        
        .contact-form h2 {
            color: #c39248;
            font-weight: bold;
            border-bottom: 1px solid #3C3261;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .form-label {
            color: #c39248 !important;
        }
        
        .form-control {
            background-color: #121212 !important;
            border: 1px solid #333 !important;
            color: #e0e0e0 !important;
        }
        
        .form-control:focus {
            border-color: #c39248 !important;
            box-shadow: 0 0 0 0.25rem rgba(195, 146, 72, 0.25) !important;
        }
        
        textarea.form-control {
            min-height: 150px;
        }
        
        .btn-submit {
            background-color: #c39248 !important;
            border-color: #c39248 !important;
            color: #121212 !important;
            font-weight: bold;
            padding: 10px 0;
        }
        
        .btn-submit:hover {
            background-color: #a3762f !important;
            border-color: #a3762f !important;
        }
        
        .alert {
            border-radius: 5px;
        }
        
        .alert-danger {
            background-color: rgba(195, 38, 30, 0.2);
            border-color: #C3261E;
            color: #e0e0e0;
        }
        
        .alert-success {
            background-color: rgba(40, 167, 69, 0.2);
            border-color: #28a745;
            color: #e0e0e0;
        }