       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, sans-serif;
            color: #333;
            line-height: 1.6;
            background: #f5f5f5;
        }

        /* Шапка */
        header {
            /*background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);*/
            /*color: #fff;*/
            padding: 20px 0;
            /*box-shadow: 0 2px 10px rgba(0,0,0,0.2);*/
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
         .header-content h1 a {
            text-decoration: none;
            outline: none;
            color: #000000;
            text-decoration: none
        }

        .logo-block {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-block img {
            height: 60px;
            width: auto;
            /*background: #fff;*/
            padding: 5px 10px;
            border-radius: 5px;
        }

        h1 {
            font-size: 2.2rem;
            letter-spacing: 2px;
            color: #000000;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);

        }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)),
                        url(../images/stroim-v-gomele2.jpg) center/cover;
            color: #fff;
            padding: 80px 20px;
            text-align: center;
        }

        .hero h2 {
            font-size: 3rem;
            margin-bottom: 5px;
            color: #ffd333/*#f39c12*/;
        }
        .hero h3 {
            margin-bottom: 25px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Услуги */
        .services {
            padding: 60px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            color: #2c3e50;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #f39c12;
            margin: 15px auto 0;
        }
        .section-description {
            padding-bottom: 25px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: #fff;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #f39c12;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .service-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-card h3::before {
            /*content: '🔨';*/
            font-size: 1.5rem;
        }

        .service-card ul {
            list-style: none;
        }

        .service-card li {
            padding: 8px 0 8px 25px;
            position: relative;
            border-bottom: 1px dashed #eee;
        }

        .service-card li:last-child {
            border-bottom: none;
        }

        .service-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #f39c12;
            font-weight: bold;
        }

        /* CTA */
        .cta {
            background: #f39c12;
            color: #fff;
            text-align: center;
            padding: 50px 20px;
        }

        .cta h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .cta p {
            font-size: 1.2rem;
        }

        /* Контакты */
        .contacts {
            padding: 60px 20px;
            background: #fff;
        }

        .contacts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: stretch;
        }

        .contact-info {
            /*background: #2c3e50;*/
            /*color: #fff;*/
            padding: 30px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-info h3 {
            color: #ff9200;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .contact-info p {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .contact-info .address {
            font-size: 1.2rem;
            margin-top: 15px;
            /*padding: 15px;*/
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
        }

        .contact-info a {
            text-decoration: none;
            outline: none;
            color: black;
        }


        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            min-height: 350px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 350px;
            border: 0;
            display: block;
        }

        /* Footer */
        footer {
            background: #1a252f;
            color: #aaa;
            text-align: center;
            padding: 25px 20px;
            font-size: 0.9rem;
        }

        footer a {
            color: #f39c12;
            text-decoration: none;
        }

        /* Адаптив */
        @media (max-width: 768px) {
            h1 { font-size: 1.5rem; }
            .hero h2 { font-size: 1.8rem; }
            .hero p { font-size: 1rem; }
            .contacts-grid { grid-template-columns: 1fr; }
            .header-content { justify-content: center; text-align: center; }
        }