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

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #000;
    font-weight: 400;
    font-display: swap;
    background-color: #fff;
	
	   /* Фиксируем цифры по высоте и ширине */
    font-variant-numeric: lining-nums tabular-nums;
    -webkit-font-feature-settings: "lnum" "tnum";
    -moz-font-feature-settings: "lnum" "tnum";
    font-feature-settings: "lnum" "tnum";
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Левая панель */
.sidebar {
    width: 280px;
    background-color: #fff;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
	text-align: center;
}

.progress-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-label {
    font-size: 16px;
    color: #888888;
	font-weight: 400;
}

.progress-percent {
    font-size: 16px;
    color: #888888;
    font-weight: 400;
}

.progress-bar {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #4285f4;
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Навигация */
.sidebar-nav {
    flex: 1;
    padding: 10px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.nav-item:hover {
    background-color: #f8f9fa;
    color: #333;
}

.nav-item.active {
    background-color: #e8f0fe;
    color: #1a73e8;
    border-left-color: #1a73e8;
}

.nav-item.disabled {
    color: #bbb;
    pointer-events: none;
}

.nav-icon {
    width: 20px;
    margin-right: 12px;
    font-size: 14px;
    text-align: center;
}

/* Футер сайдбара */
.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: #888;
}

.sidebar-footer a {
    color: #888;
    text-decoration: none;
}

.sidebar-footer a:hover {
    text-decoration: underline;
}

/* Основной контент */
.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 30px 40px;
}

/* Шапка */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.header-title {
    font-size: 30px;
    font-weight: 500;
    color: #333;
    
}

.company-name {
    font-size: 24px;
	font-weight: 400;
	color: #666;
	white-space: nowrap; 
  
    
}

.header-left h1 {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
}

.header-right {
    text-align: right; /* Добавьте это для desktop версии */
}

.curator-label {
    font-size: 16px;
    color: #000;
    margin-bottom: 4px;
}

.curator-phone {
    font-size: 16px;
    color: #000;
    margin: 0; /* Добавьте это чтобы убрать отступы */
}


/* Приветствие */
.greeting {
    font-size: 22.5px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}

/* Зелёный блок */
.success-box {
    position: relative;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid #34a853;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
    background-color: #fff;
    margin-bottom: 25px;
}

.check-icon {
    background-color: transparent;
    color: #34a853;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 39px;
    line-height: 1;
    flex-shrink: 0;
    font-family: "bootstrap-icons";
}

.check-icon::before {
    content: "\f26b";
    font-family: "bootstrap-icons";
}

.success-box p {
    padding: 14px;
	color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    /* margin: 0; */
}

/* Видео */
.video-block {
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #333;
    aspect-ratio: 16/9;
    max-width: 100%;
    margin: 5px auto;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background-color: #fff;
}

.play-icon {
    color: #333;
    font-size: 28px;
    margin-left: 4px;
}

/* Информационная секция */
.info-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.topic-item {
    padding-bottom: 20px;
    border: 1px solid transparent;
}

.topic-item:last-child {
    border-bottom: none;
}

.topic-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.topic-item p {
    font-size: 20px;
	font-weight: 400;
    color: #000;
    line-height: 1.7;
}

/* Футер с кнопками */
.content-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn-back {
    background-color: #fff;
    color: #555;
    border-color: #ddd;
}

.btn-back:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.btn-primary {
    background-color: #1a73e8;
    color: white;
    border-color: #1a73e8;
}

.btn-primary:hover {
    background-color: #1557b0;
    border-color: #1557b0;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
    }
    .main-content {
        margin-left: 240px;
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .main-content {
        margin-left: 0;
        padding: 15px 20px;
    }
    .content-header {
        flex-direction: column;
        gap: 15px;
    }
    .header-right {
        text-align: left;
    }
    .header-center {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .company-name {
        margin-left: 0;
        font-size: 20px;
    }
}
