        @font-face {
            font-family: 'SangBleu Versailles';
            src: url("../../fonts/SangBleuVersailles-Regular-WebXL.otf") format("opentype");
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'SangBleu Versailles';
            src: url("../../fonts/SangBleuVersailles-RegularItalic-WebXL.otf") format("opentype");
            font-weight: 400;
            font-style: italic;
            font-display: swap;
        }
        @font-face {
            font-family: 'SangBleu Versailles';
            src: url("../../fonts/SangBleuVersailles-Medium-WebXL.otf") format("opentype");
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'SangBleu Versailles';
            src: url("../../fonts/SangBleuVersailles-MediumItalic-WebXL.otf") format("opentype");
            font-weight: 500;
            font-style: italic;
            font-display: swap;
        }
        @font-face {
            font-family: 'SangBleu Versailles';
            src: url("../../fonts/SangBleuVersailles-Bold-WebXL.otf") format("opentype");
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'SangBleu Versailles';
            src: url("../../fonts/SangBleuVersailles-BoldItalic-WebXL.otf") format("opentype");
            font-weight: 700;
            font-style: italic;
            font-display: swap;
        }
        @font-face {
            font-family: 'SangBleu Versailles';
            src: url("../../fonts/SangBleuVersailles-Book-WebXL.otf") format("opentype");
            font-weight: 350;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'SangBleu Versailles';
            src: url("../../fonts/SangBleuVersailles-BookItalic-WebXL.otf") format("opentype");
            font-weight: 350;
            font-style: italic;
            font-display: swap;
        }

        body {
            font-family: 'SangBleu Versailles', serif;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("../../change/ChatGPT%20Image%202%20%D1%84%D0%B5%D0%B2%D1%80.%202026%20%D0%B3.,%2016_18_33.png");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.8;
            filter: grayscale(100%) sepia(22%) brightness(1.08) contrast(0.95);
            z-index: -1;
            pointer-events: none;
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background: linear-gradient(180deg, rgba(250, 246, 240, 0.75), rgba(250, 246, 240, 0.9));
            z-index: -1;
            pointer-events: none;
        }
        
        .playfair {
            font-family: 'SangBleu Versailles', serif;
        }
        
        .admin-panel {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
            overflow-y: auto;
        }
        
        .admin-panel.active {
            display: block;
        }
        
        .admin-content {
            max-width: 1200px;
            margin: 20px auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }
        
        .admin-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            border-radius: 12px 12px 0 0;
        }
        
        .admin-section {
            padding: 20px;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .admin-section:last-child {
            border-bottom: none;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #374151;
        }
        
        .form-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
            transition: border-color 0.3s;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 14px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }
        
        .btn-secondary {
            background: #f3f4f6;
            color: #374151;
        }
        
        .btn-secondary:hover {
            background: #e5e7eb;
        }
        
        .btn-success {
            background: #10b981;
            color: white;
        }
        
        .btn-success:hover {
            background: #059669;
        }
        
        .btn-danger {
            background: #ef4444;
            color: white;
        }
        
        .btn-danger:hover {
            background: #dc2626;
        }
        
        .color-picker-group {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .color-picker-group input[type="color"] {
            width: 60px;
            height: 45px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            cursor: pointer;
        }
        
        .preview-image {
            max-width: 200px;
            max-height: 100px;
            margin-top: 10px;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
        }

        .password-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            z-index: 10000;
            justify-content: center;
            align-items: center;
        }
        
        .password-modal.active {
            display: flex;
        }
        
        .password-modal-content {
            background: white;
            padding: 40px;
            border-radius: 16px;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        @media (max-width: 768px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        
        .section-header {
            font-size: 20px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea;
        }
        
        .hero-section {
            padding: 100px 20px;
            text-align: center;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(122, 112, 103, 0.1), rgba(93, 85, 80, 0.1));
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        
        .alert {
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .alert-success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #6ee7b7;
        }
        
        .alert-error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fca5a5;
        }
    
