   * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                background: #f5f5f5;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
            }
            
            /* Header */
            .header {
                background: white;
                border-bottom: 1px solid #e0e0e0;
                padding: 20px 0;
                position: sticky;
                top: 0;
                z-index: 100;
            }
            
            .header-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .logo h1 {
                font-size: 24px;
                color: #ff6b35;
                font-weight: 700;
            }
            
            .logo p {
                font-size: 12px;
                color: #999;
                margin-top: 4px;
            }
            
            .nav-links {
                display: flex;
                gap: 25px;
            }
            
            .nav-links a {
                text-decoration: none;
                color: #555;
                font-size: 14px;
                transition: color 0.3s;
            }
            
            .nav-links a:hover {
                color: #ff6b35;
            }
            
            /* Main Content */
            .main-content {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 40px 20px;
            }
            
            .container {
                max-width: 1200px;
                width: 100%;
            }
            
            .search-card {
                background: white;
                border-radius: 16px;
                padding: 50px 40px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.08);
                border: 1px solid #e0e0e0;
                text-align: center;
            }
            
            .search-icon {
                font-size: 64px;
                margin-bottom: 20px;
            }
            
            .search-card h2 {
                font-size: 24px;
                color: #333;
                margin-bottom: 10px;
            }
            
            .search-card p {
                color: #888;
                margin-bottom: 30px;
            }
            
            .search-form {
                display: flex;
                gap: 10px;
            }
            
            .search-form input {
                flex: 1;
                padding: 14px 18px;
                font-size: 16px;
                border: 2px solid #e0e0e0;
                border-radius: 10px;
                transition: all 0.3s;
            }
            
            .search-form input:focus {
                outline: none;
                border-color: #ff6b35;
            }
            
            .search-form button {
                padding: 14px 28px;
                background: #ff6b35;
                color: white;
                border: none;
                border-radius: 10px;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s;
            }
            
            .search-form button:hover {
                background: #e55a2b;
                transform: translateY(-1px);
            }
            
            .info {
                margin-top: 25px;
                padding: 15px;
                background: #f8f9fa;
                border-radius: 10px;
                font-size: 13px;
                color: #666;
            }
            
            /* Footer */
            .footer {
                background: #2c3e50;
                color: #ecf0f1;
                padding: 40px 0 20px;
                margin-top: auto;
            }
            
            .footer-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
            }
            
            .footer-col h4 {
                font-size: 16px;
                margin-bottom: 15px;
                color: #fff;
            }
            
            .footer-col p {
                font-size: 13px;
                line-height: 1.6;
                color: #bdc3c7;
            }
            
            .footer-col ul {
                list-style: none;
            }
            
            .footer-col ul li {
                margin-bottom: 8px;
            }
            
            .footer-col ul li a {
                color: #bdc3c7;
                text-decoration: none;
                font-size: 13px;
                transition: color 0.3s;
            }
            
            .footer-col ul li a:hover {
                color: #ff6b35;
            }
            
            .footer-bottom {
                text-align: center;
                padding-top: 30px;
                margin-top: 30px;
                border-top: 1px solid #3d566e;
                font-size: 12px;
                color: #7f8c8d;
            }
            
            @media (max-width: 768px) {
                .header-container {
                    flex-direction: column;
                    text-align: center;
                }
                
                .search-card {
                    padding: 30px 20px;
                }
                
                .search-form {
                    flex-direction: column;
                }
                
                .footer-container {
                    grid-template-columns: 1fr;
                    text-align: center;
                }
            }
			* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo h1 {
    font-size: 24px;
    color: #ff6b35;
    font-weight: 700;
}

.logo p {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6b35;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

/* Сетка для двух колонок */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.search-card {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    text-align: center;
}

.search-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.search-card h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.search-card p {
    color: #888;
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s;
}

.search-form input:focus {
    outline: none;
    border-color: #ff6b35;
}

.search-form button {
    padding: 14px 28px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-form button:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

.info {
    margin-top: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 13px;
    color: #666;
    text-align: left;
}

.info p {
    margin-top: 5px;
}

/* Правая колонка (сайдбар) */
.sidebar {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.sidebar h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-banner {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.sidebar-banner img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
}

.sidebar-banner p {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-top: 20px;
}

.description h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #3d566e;
    font-size: 12px;
    color: #7f8c8d;
}

/* Адаптив */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .search-card {
        padding: 30px 20px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ INDEX.PHP ===== */

/* Полноширинные баннеры */
.full-width-banner {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
}
.full-width-banner.top {
    margin-top: 0;
}
.full-width-banner.bottom {
    margin-bottom: 0;
    margin-top: 30px;
}

.banner-container {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.banner-container img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
}

.banner-container .banner-placeholder {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    color: #999;
    font-size: 14px;
}

.banner-stats {
    font-size: 10px;
    color: #999;
    margin-top: 8px;
}

.progress-bar {
    background: #e0e0e0;
    border-radius: 4px;
    height: 4px;
    margin-top: 5px;
    overflow: hidden;
}

.progress-fill {
    background: #ff6b35;
    height: 100%;
}

/* Сетка для двух колонок (переопределяем существующий .content-grid если есть) */
.content-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Правая колонка (сайдбар) */
.sidebar {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.sidebar h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-banner {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.sidebar-banner img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
}

.sidebar-banner p {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.sidebar-banner .banner-placeholder {
    background: #e0e0e0;
    padding: 40px 20px;
    border-radius: 8px;
    color: #999;
}

.description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-top: 20px;
}

.description h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    .full-width-banner {
        padding: 0 16px;
        margin-bottom: 20px;
    }
    .search-card {
        padding: 30px 20px;
    }
    .search-form {
        flex-direction: column;
    }
}