* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 50%, #2a2a6a 100%);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}
/* Стили для изображений иллюстраций */
.illustration-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.illustration-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}
/* Хедер */
.header {
    margin-bottom: 40px;
}

/* Герой секция */
.hero {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #a0a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-subtitle {
    font-size: 1.3rem;
    color: #b0b0ff;
    opacity: 0.9;
}

/* Контент */
.content-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Секции */
.section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section h2 {
    color: #b0b0ff;
    margin-bottom: 30px;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #415a77;
}

/* Контент блоки */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.content-block.reversed {
    direction: rtl;
}

.content-block.reversed > * {
    direction: ltr;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
}

/* Полноширинный текстовый контент */
.text-content.full-width {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.text-content.full-width .advantages-list {
    text-align: left;
    display: inline-block;
    margin-top: 20px;
}

.text-content.full-width p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Иллюстрации */
.illustration-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 20px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.illustration-placeholder:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Статистика */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #9db2c8;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #a8c0d8;
    line-height: 1.4;
}

/* Карточки особенностей */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #b0b0ff;
}

.feature-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Списки */
.advantages-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.advantages-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.advantages-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a4aff;
    font-weight: bold;
    font-size: 1.2rem;
}

.advantages-list li:last-child {
    border-bottom: none;
}

/* Контакты */
.contact-section {
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #b0b0ff;
}

.contact-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
    min-width: 20px;
}

.contact-value {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.contact-button {
    background: linear-gradient(45deg, #4a4aff, #6c6cff);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 74, 255, 0.4);
}

/* Футер */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 30px 20px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fond-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.fond-footer p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Убираем старые стили логотипов из хедера */
.logo-container {
    display: none;
}

.project-logo {
    display: none;
}

.fond-logo {
    display: none;
}

/* Декоративные элементы */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 7s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0px, 0px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(10px, -15px) scale(1.02);
        opacity: 0.4;
    }
    50% {
        transform: translate(20px, 0px) scale(1);
        opacity: 0.3;
    }
    75% {
        transform: translate(10px, 15px) scale(0.98);
        opacity: 0.4;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .content-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .container {
        padding: 15px;
    }
    
    .content-wrapper {
        padding: 25px;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .contact-item {
        justify-content: center;
        width: 100%;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .section h2 {
        font-size: 1.7rem;
    }
    
    .hero {
        margin-top: 10px;
        margin-bottom: 30px;
    }
    
    .footer {
        padding: 20px 15px;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .text-content.full-width {
        text-align: left;
    }
    
    .text-content.full-width .advantages-list {
        display: block;
    }
}

@media (max-width: 480px) {
    .project-title {
        font-size: 1.7rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        padding: 20px 15px;
    }
    
    .contact-info {
        padding: 25px 15px;
    }
    
    .footer-logo {
        max-width: 100px;
    }
    
    .fond-footer p {
        font-size: 0.9rem;
    }
    
    .advantages-list li {
        padding-left: 25px;
        font-size: 1rem;
    }
}