
        :root {
            --background: 0 0% 100%;
            --foreground: 222.2 84% 4.9%;
            --card: 0 0% 100%;
            --card-foreground: 222.2 84% 4.9%;
            --popover: 0 0% 100%;
            --popover-foreground: 222.2 84% 4.9%;
            --primary: 221.2 83.2% 53.3%;
            --primary-foreground: 210 40% 98%;
            --secondary: 210 40% 96.1%;
            --secondary-foreground: 222.2 47.4% 11.2%;
            --muted: 210 40% 96.1%;
            --muted-foreground: 215.4 16.3% 46.9%;
            --accent: 210 40% 96.1%;
            --accent-foreground: 222.2 47.4% 11.2%;
            --destructive: 0 84.2% 60.2%;
            --destructive-foreground: 210 40% 98%;
            --border: 214.3 31.8% 91.4%;
            --input: 214.3 31.8% 91.4%;
            --ring: 221.2 83.2% 53.3%;
            --radius: 0.5rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
            line-height: 1.5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .diplomoshnaya-header {
            border-bottom: 1px solid hsl(var(--border));
            background-color: white;
        }

        .diplomoshnaya-wrapper {
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .diplomoshnaya-logotype {
            font-size: 1.5rem;
            font-weight: bold;
            color: hsl(var(--primary));
            text-decoration: none;
            margin-right: 1.5rem;
        }

        .diplomoshnaya-navigation {
            display: none;
        }

        @media (min-width: 768px) {
            .diplomoshnaya-navigation {
                display: flex;
                gap: 0.5rem;
                margin-right: auto;
            }
        }

        .diplomoshnaya-nav-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem;
            color: hsl(var(--muted-foreground));
            text-decoration: none;
            font-size: 0.875rem;
            border-radius: var(--radius);
        }

        .diplomoshnaya-nav-item:hover {
            background-color: hsl(var(--muted));
            color: hsl(var(--foreground));
        }

        .diplomoshnaya-icon {
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
        }

        .diplomoshnaya-icon-purple {
            background-color: purple;
        }

        .diplomoshnaya-icon-teal {
            background-color: teal;
        }

        .diplomoshnaya-header-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .diplomoshnaya-primary-btn {
            padding: 0.5rem 1rem;
            background-color: hsl(var(--primary));
            color: hsl(var(--primary-foreground));
            border: none;
            border-radius: var(--radius);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
        }

        .diplomoshnaya-primary-btn:hover {
            opacity: 0.9;
        }

        .diplomoshnaya-icon-btn {
            padding: 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        .diplomoshnaya-main-content {
            display: flex;
            gap: 1.5rem;
            padding: 1rem;
        }

        .diplomoshnaya-content {
            flex: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .diplomoshnaya-article-card {
            background-color: white;
            border: 1px solid hsl(var(--border));
            border-radius: var(--radius);
            margin-bottom: 2rem;
            overflow: hidden;
        }

        .diplomoshnaya-article-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .diplomoshnaya-article-content {
            padding: 2rem;
        }

        .diplomoshnaya-article-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .diplomoshnaya-article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
            margin-bottom: 2rem;
        }

        .diplomoshnaya-article-author {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .diplomoshnaya-avatar {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            object-fit: cover;
        }

        .diplomoshnaya-article-date {
            font-style: italic;
        }

        .diplomoshnaya-article-body {
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .diplomoshnaya-article-body h2 {
            font-size: 1.75rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .diplomoshnaya-article-body p {
            margin-bottom: 1rem;
        }

        .diplomoshnaya-article-body ul, .diplomoshnaya-article-body ol {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }

        .diplomoshnaya-article-body li {
            margin-bottom: 0.5rem;
        }

        .diplomoshnaya-table-of-contents {
            background-color: hsl(var(--muted));
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 2rem;
        }

        .diplomoshnaya-table-of-contents h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .diplomoshnaya-table-of-contents ul {
            list-style-type: none;
            padding-left: 0;
        }

        .diplomoshnaya-table-of-contents li {
            margin-bottom: 0.5rem;
        }

        .diplomoshnaya-table-of-contents a {
            color: hsl(var(--primary));
            text-decoration: none;
        }

        .diplomoshnaya-table-of-contents a:hover {
            text-decoration: underline;
        }

        .diplomoshnaya-comments-section {
            margin-top: 3rem;
        }

        .diplomoshnaya-comments-section h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .diplomoshnaya-comment {
            border: 1px solid hsl(var(--border));
            border-radius: var(--radius);
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .diplomoshnaya-comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .diplomoshnaya-comment-author {
            font-weight: 600;
        }

        .diplomoshnaya-comment-date {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
        }

        .diplomoshnaya-comment-body {
            margin-bottom: 0.5rem;
        }

        .diplomoshnaya-comment-actions {
            display: flex;
            gap: 1rem;
        }

        .diplomoshnaya-comment-action {
            font-size: 0.875rem;
            color: hsl(var(--primary));
            cursor: pointer;
        }

        .diplomoshnaya-comment-action:hover {
            text-decoration: underline;
        }

        .diplomoshnaya-related-articles {
            margin-top: 3rem;
        }

        .diplomoshnaya-related-articles h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .diplomoshnaya-related-article {
            border: 1px solid hsl(var(--border));
            border-radius: var(--radius);
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .diplomoshnaya-related-article-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .diplomoshnaya-related-article-meta {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
        }

        .diplomoshnaya-footer {
            background-color: hsl(var(--muted));
            padding: 2rem 0;
            margin-top: 2rem;
        }

        .diplomoshnaya-footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .diplomoshnaya-footer-content {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .diplomoshnaya-footer-nav {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .diplomoshnaya-footer-link {
            color: hsl(var(--muted-foreground));
            text-decoration: none;
            font-size: 0.875rem;
        }

        .diplomoshnaya-footer-link:hover {
            color: hsl(var(--foreground));
        }

        .diplomoshnaya-footer-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .diplomoshnaya-footer-logo {
            width: 2rem;
            height: 2rem;
            background-color: #eab308;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .diplomoshnaya-mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: white;
            z-index: 50;
            padding: 1rem;
            display: none;
        }

        .diplomoshnaya-mobile-menu.active {
            display: block;
        }
        




        .diplomoshnaya-work-info-block {
            background: hsl(var(--diplomownaia-background));
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .diplomoshnaya-work-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .diplomoshnaya-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: hsl(var(--diplomownaia-card-background));
            border-radius: 6px;
        }
        
        .diplomoshnaya-info-icon {
            width: 24px;
            height: 24px;
            color: hsl(var(--diplomownaia-primary));
        }
        
        .diplomoshnaya-tags-cloud {
            margin: 20px 0;
            padding: 15px;
            background: hsl(var(--diplomownaia-background));
            border-radius: 8px;
        }
        
        .diplomoshnaya-tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }
        
        .diplomoshnaya-tag-item {
            background: hsl(var(--diplomownaia-card-background));
            padding: 5px 12px;
            border-radius: 16px;
            font-size: 14px;
            color: hsl(var(--diplomownaia-primary));
            text-decoration: none;
            transition: background-color 0.2s;
        }
        
        .diplomoshnaya-tag-item:hover {
            background: hsl(var(--diplomownaia-primary));
            color: white;
        }
        
        .diplomoshnaya-faq-section {
            margin: 30px 0;
            padding: 20px;
            background: hsl(var(--diplomownaia-background));
            border-radius: 8px;
        }
        
        .diplomoshnaya-faq-item {
            border-bottom: 1px solid hsl(var(--diplomownaia-border));
            padding: 15px 0;
        }
        
        .diplomoshnaya-faq-question {
            font-weight: 600;
            margin-bottom: 10px;
            color: hsl(var(--diplomownaia-foreground));
        }
        
        .diplomoshnaya-faq-answer {
            color: hsl(var(--diplomownaia-muted-foreground));
        }










        



        .diplomoshnaya-order {
            background: hsl(var(--diplomownaia-card-background));
            border-radius: 8px;
            padding: 24px;
            margin: 24px 0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .diplomoshnaya-order-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: hsl(var(--diplomownaia-foreground));
        }
        
        .diplomoshnaya-order-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .diplomoshnaya-form-group {
            margin-bottom: 16px;
        }
        
        .diplomoshnaya-input {
            width: 100%;
            padding: 12px;
            border: 1px solid hsl(var(--diplomownaia-border));
            border-radius: 6px;
            font-size: 1rem;
            background: hsl(var(--diplomownaia-background));
            color: hsl(var(--diplomownaia-foreground));
        }
        
        .diplomoshnaya-input:focus {
            outline: none;
            border-color: hsl(var(--diplomownaia-primary));
        }
        
        .diplomoshnaya-form-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 24px;
        }
        
        .diplomoshnaya-form-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            color: hsl(var(--diplomownaia-muted-foreground));
        }

        .diplomoshnaya-order-btn {
            padding: 12px 32px;
            background: hsl(var(--diplomownaia-primary));
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
         }
         
         .diplomoshnaya-order-btn:hover {
            background: hsl(210, 80%, 60%); /* Светло-голубой */
         }
         
         .diplomoshnaya-order-btn:active {
            background: hsl(var(--diplomownaia-primary), 0.6);
            transform: scale(0.98);
            transition: all 0.1s;
         }






         .diplomoshnaya-breadcrumbs {
            padding: 12px 0;
            margin-bottom: 20px;
        }
        
        .diplomoshnaya-breadcrumb-item {
            color: hsl(var(--diplomownaia-muted-foreground));
            text-decoration: none;
        }
        
        .diplomoshnaya-breadcrumb-item:hover {
            color: hsl(var(--diplomownaia-primary));
        }
        
        .diplomoshnaya-breadcrumb-separator {
            margin: 0 8px;
            color: hsl(var(--diplomownaia-muted-foreground));
        }
        
        .diplomoshnaya-breadcrumb-current {
            color: hsl(var(--diplomownaia-foreground));
        }