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

body {
    font-family: 'PT Sans', sans-serif;
    background-color: #111;
    color: #eee;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER */
.header {
    background-color: #000;
    border-bottom: 3px solid #666; /* Серая горизонтальная линия 3px */
    padding: 15px 20px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}

.contact-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #fff;
}

.separator {
    margin: 0 10px;
    color: #666;
}

/* MAIN CONTENT */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* FOOTER */
.footer {
    background-color: #000;
    border-top: 3px solid #666; /* Серая горизонтальная линия 3px */
    padding: 20px;
    text-align: center;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    color: #666;
    font-size: 12px;
}

/* LANDING PAGE (index.php) */
.landing-page {
    flex: 1;
    display: flex;
    min-height: calc(100vh - 120px); /* Высота с учетом header и footer */
}

/* Левая и правая колонки */
.landing-left,
.landing-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Вертикальная разделительная линия */
.landing-left {
    border-right: 2px solid #666;
}

/* Левая колонка — изображение */
.image-container {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Правая колонка — текст */
.text-container {
    padding: 0 10px 0 10px; /* отступ справа 10px, слева от разделительной линии 10px (учитывается padding-left) */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.text-container h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    border-left: 4px solid #fff;
    padding-left: 15px;
}

.text-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 20px;
    text-align: justify;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .landing-page {
        flex-direction: column;
    }
    
    .landing-left {
        border-right: none;
        border-bottom: 2px solid #fff;
        min-height: 350px;
    }
    
    .image-container {
        width: 250px;
        height: 250px;
        margin: 30px 0;
    }
    
    .text-container {
        padding: 30px 20px;
    }
    
    .text-container h1 {
        font-size: 24px;
    }
    
    .text-container p {
        font-size: 16px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
}