/* Общие стили и обнуление */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Шапка сайта */
header {
    background-color: #111;
    padding: 20px 0;
    border-bottom: 3px solid #ff6600;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none; /* Убираем подчеркивание */
    display: inline-block;
}

.logo span {
    color: #ff6600;
}

.phone {
    font-size: 18px;
    font-weight: bold;
    color: #ff6600;
    text-decoration: none;
}

/* Главный баннер (с фоновой картинкой) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                url('images/intro-bg.jpg') center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #cccccc;
}

.btn {
    display: inline-block;
    background-color: #ff6600;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #e05500;
}

/* Измененный текстовый блок преимуществ */
.features {
    padding: 50px 0;
    background-color: #151515;
}

.text-block {
    text-align: center;
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
    color: #dddddd;
}

/* Блок фотогалереи */
.services {
    padding: 60px 0;
    background-color: #222;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-title span {
    color: #ff6600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    background-color: #2b2b2b;
    border-radius: 6px;
    overflow: hidden;
    border-bottom: 3px solid #ff6600;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

/* Блок Статей */
.contacts {
    padding: 60px 0;
    background-color: #111;
    //border-top: 3px solid #ff6600;
}

.articles-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.article-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 20px;
    background-color: #222;
    border-left: 4px solid #ff6600;
    border-radius: 0 4px 4px 0;
    transition: 0.2s;
}

.article-link:hover {
    background-color: #2b2b2b;
    padding-left: 25px;
    color: #ff6600;
}

/* Подвал */
footer {
    background-color: #0a0a0a;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #666;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .header-box {
        flex-direction: column;
        gap: 10px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    .text-block {
        font-size: 16px;
    }
}
/* Стили для оформления текста статьи */
.site-article {
    background-color: #222;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    border-left: 4px solid #ff6600;
}

.site-article h2 {
    color: #ff6600;
    font-size: 26px;
    margin-bottom: 20px;
}

.site-article h3 {
    color: #ffffff;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.site-article p {
    color: #dddddd;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}
.privacy-notice {
    font-size: 11px;
    color: #444;
    max-width: 600px;
    margin: 10px auto 0 auto;
    line-height: 1.4;
}
.privacy-notice a {
    color: #444;
    text-decoration: underline; 
}

.privacy-notice a:hover {
    color: #ff6600; 
}