@charset "UTF-8";

/* Основные стили и сброс */


       #description-seo .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 20px;
        }

        /* Цветовая палитра */
        :root {
            --primary-blue: #000000; /* Темно-синий */
            --secondary-blue: #0e5af4; /* Голубой (акцентный) */
            --light-blue: #e0f2fe; /* Светло-голубой фон */
            --accent-blue: #0e5af4; /* Яркий голубой */
            --text-dark: #1e293b;
            --text-light: #64748b;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(30, 58, 138, 0.08);
        }

        /* Шапка и заголовки */
       #description-seo .main-header {
            text-align: center;
            margin-bottom: 40px;
            padding-top: 20px;
        }

       #description-seo .main-header h1 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 10px;
            line-height: 1.2;
        }

       #description-seo .subtitle {
            color: var(--secondary-blue);
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 20px;
        }

        /* Вводный текст */
       #description-seo .intro-text {
            background-color: var(--white);
            /* padding: 30px; */
            border-radius: 12px;
            margin: 0 auto 40px;
            box-shadow: var(--shadow);
            border-left: 5px solid #004497;
            font-size: 1.1rem;
            font-family:'Roboto'!important
        }
         #description-seo h3 {
             font-family:'Roboto'!important;
             font-weight:normal;
             line-height: normal;
             color:black
         }

       #description-seo .intro-text p {
            color: var(--text-dark);
            margin-bottom: 0;
        }

        /* Сетка категорий */
       #description-seo .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

       #description-seo .category-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--secondary-blue);
        }

       #description-seo .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(30, 58, 138, 0.12);
        }

       #description-seo .category-header {
            background-color: #34cbc0;
            padding: 15px 10px;
            border-bottom: 1px solid #dbeafe;
            height: 130px;
            display: flex;
        }

       #description-seo .category-header h3 {
            color: var(--primary-blue);
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: normal;
        }

       #description-seo .category-header h3:before {
            content: "✓";
            color: #ffffff;
            font-weight: bold;
        }

       #description-seo .category-body {
            padding: 20px;
        }

       #description-seo .category-body p {
            color: var(--text-light);
            margin-bottom: 15px;
        }

       #description-seo .category-highlight {
            color: #2eb1a8!important;
            font-weight: 600;
        }

        /* Преимущества */
       #description-seo .advantages-section {
            background-color: var(--light-blue);
            border-radius: 12px;
            padding: 40px 30px;
            margin-bottom: 50px;
            box-shadow: var(--shadow);
        }

       #description-seo .advantages-section h2 {
            color: var(--primary-blue);
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.8rem;
        }

       #description-seo .advantages-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

       #description-seo .advantages-list li {
            background-color: var(--white);
            padding: 20px;
            border-radius: 10px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            box-shadow: 0 2px 8px rgba(2, 132, 199, 0.1);
        }

       #description-seo .checkmark {
            color: var(--accent-blue);
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* Призыв к действию */
       #description-seo .cta-section {
            text-align: center;
            padding: 50px 20px;
            background: linear-gradient(135deg, #2eb1a8 0%, #37d7cc 100%);
            background-color: #009cde;
            background-image: radial-gradient(circle farthest-side at center bottom,#009cde,#003087 125%);
            color: var(--white);
            border-radius: 16px;
            margin-bottom: 30px;
        }

       #description-seo .cta-section h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: white;
        }

       #description-seo .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
        }

       #description-seo .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

       #description-seo .btn {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

       #description-seo .btn-primary {
            background-color: var(--white);
            color: var(--primary-blue);
        }

       #description-seo .btn-primary:hover {
            background-color: #f0f9ff;
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
        }

       #description-seo .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

       #description-seo .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: scale(1.05);
        }

        /* Футер */
       #description-seo .footer-note {
            text-align: center;
            color: var(--text-light);
            padding: 20px;
            font-style: italic;
            border-top: 1px solid #e2e8f0;
            margin-top: 20px;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
           #description-seo .main-header h1 {
                font-size: 1.7rem;
            }
           #description-seo .subtitle {
                font-size: 1.1rem;
            }
           #description-seo .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
           #description-seo .btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
           #description-seo .advantages-list {
                grid-template-columns: 1fr;
            }
        }

.stroyozon-wrapper {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.stroy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stroy-h2 {
    text-align: center;
    font-size: 28px;
    color: #1e3c72;
    margin: 10px 0  0;
}

/* Hero блок */
.stroy-hero {
    background: #2eb1a8;
    background-color: #009cde;
    background-image: radial-gradient(circle farthest-side at center bottom,#009cde,#003087 125%);
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.stroy-title {
    font-size: 1.8rem;
    margin: 0;
}

.stroy-tagline {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.stroy-mission {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
}

/* Сетка карточек */
.stroy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.stroy-card {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    border-top: 4px solid #1e3c72;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.stroy-h3 {
    margin-top: 0;
    color: #1e3c72;
}

/* Список предложений */
.stroy-offers {
    background: #fff;
    padding: 50px 0;
}

.stroy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 15px;
}

.stroy-list-item {
    background: #f4f4f4;
    padding: 15px 20px;
    border-left: 5px solid #f39c12;
}

/* Преимущества */
.stroy-advantages {
    padding: 50px 0;
}

.stroy-adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stroy-adv-card {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}

.stroy-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.stroy-h4 {
    margin: 10px 0;
    font-size: 18px;
    line-height: normal;
}

/* Футер */
.stroy-footer {
    background: #34cbc0;
    background-color: #009cde;
    background-image: radial-gradient(circle farthest-side at center bottom,#009cde,#003087 125%);
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

@media (max-width: 600px) {
    .stroy-list { grid-template-columns: 1fr; }
    .stroy-title { font-size: 30px; }
}