/* --- Сброс и базовые стили --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: #f7f7f7;
            color: #181818;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            font-weight: 600;
            color: #114e5a; /* Темно-бирюзовый цвет заголовков */
        }

        h2 {
            text-align: center;
            font-size: 28px;
            margin: 50px 0 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        h2::after {
            content: "";
            display: block;
            width: 100px;
            height: 2px;
            background: #f0c674; /* Акцентная линия */
            margin: 20px auto 0;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- Кнопки --- */
        .btn {
            display: inline-block;
            background-color: #fdd835; /* Желтый цвет тильды */
            color: #000;
            padding: 15px 30px;
            border-radius: 5px;
            border: none;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            text-align: center;
            width: 100%;
        }

        .btn:hover {
            background-color: #fbc02d;
        }

        /* --- Хедер (Профиль) --- */
        .profile-section {
            display: flex;
            flex-direction: row;
            align-items: center;
			flex-wrap: wrap;
			gap: 75px;
            padding: 60px 34px;
            text-align: center;
			width:100%;
        }


        .avatar {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #fdd835;
            margin-bottom: 30px;
            background-color: #ddd; /* Заглушка, если нет фото */
        }

        .profile-name {
            font-size: 32px;
            margin-bottom: 15px;
            color: #114e5a;
        }

        .profile-desc {
            font-size: 16px;
            max-width: 600px;
            color: #555;
        }

        /* --- Блок кнопок приема --- */
        .reception-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .reception-btn {
            background-color: #fdd835;
            padding: 20px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 14px;
            min-width: 300px;
            text-align: center;
        }

        /* --- Сетка карточек (Материалы и Цены) --- */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .card {
            background: #fff;
            border: 1px solid #e0e0e0; /* Тонкая рамка как в оригинале */
            border-radius: 5px; /* Скругление */
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            text-align: center;
            transition: box-shadow 0.3s;
        }

        /* Для секции материалов рамка оранжевая */
        .materials-section .card {
            border: 1px solid #fdd835;
        }

        .card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .card-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000;
        }

        .card-desc {
            font-size: 14px;
            color: #444;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .price {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 20px;
            display: block;
        }

        /* --- Аккордеон (Обо мне) --- */
        .accordion {
            background: #f7f7f7;
            margin-bottom: 60px;
        }

        details {
            border-bottom: 1px solid #e0e0e0;
            padding: 20px 0;
        }

        summary {
            font-weight: 700;
            color: #114e5a;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: '+';
            font-size: 24px;
            color: #fdd835;
            font-weight: 300;
        }

        details[open] summary::after {
            content: '?'; /* Крестик при открытии */
        }

        .details-content {
            padding-top: 20px;
            font-size: 14px;
            color: #333;
        }

        /* --- Карта и футер --- */
        .map-section {
            margin-bottom: 40px;
            border-radius: 10px;
            overflow: hidden;
            height: 400px;
            background-color: #eee;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
        }

        .map-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        footer {
            background-color: #f0f0f0;
            padding: 40px 0;
            font-size: 12px;
            color: #666;
            text-align: left;
        }
        
        .footer-content p {
            margin-bottom: 10px;
        }

        .legal-warning {
            background-color: #fdd835;
            padding: 15px;
            text-align: center;
            font-weight: bold;
            font-size: 12px;
            margin-bottom: 20px;
            border-radius: 5px;
        }

        /* --- МОДАЛЬНОЕ ОКНО (POPUP) --- */
        .modal-overlay {
            display: none; /* Скрыто по умолчанию */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-active {
            display: flex;
            opacity: 1;
        }

        .modal-window {
            background: #fff;
            width: 100%;
            max-width: 500px;
            padding: 40px;
            border-radius: 5px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
            color: #aaa;
            line-height: 1;
        }

        .modal-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 30px;
            color: #000;
            font-weight: 500;
        }

        /* Желтая плашка с выбором */
        .order-summary {
            background-color: #fdd835;
            padding: 15px;
            border-radius: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            outline: none;
        }

        .form-input:focus {
            border-color: #000;
        }

        .checkbox-group {
            margin-top: 20px;
        }

        .checkbox-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
            font-size: 14px;
            color: #333;
        }

        .checkbox-item input {
            margin-top: 4px;
            margin-right: 10px;
        }

        .checkbox-item a {
            color: #114e5a;
            text-decoration: underline;
        }
        
        /* Иконки (псевдо) */
        .icon-zoom::before { content: ""; }
        .icon-doc::before { content: ""; }
        .icon-loc::before { content: url(navi_ico.png);  }
		
		
/*coocs info*/
#rostech{
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 99;
box-sizing: border-box;
padding: 20px;
--shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.08);
display: -webkit-flex;
display: flex;	
background-color: #f5f8f9;
font-size: 14pt;
text-align: left;
line-height: 1.4;
letter-spacing: -0.003em;
font-weight: normal;
}

#rosknopa{
text-decoration: none;
display: inline-block;
white-space: nowrap;
text-align: center;
line-height: 1.3;
padding: 15px 30px;
background: #4682B4;
transition: .3s;
outline: none;
border: 1px solid var(--main);
border-radius: 8px;
font-size: 1rem;
font-weight: 500;
box-shadow: none;
height:51px;
width:128px;
color: #fff;
margin: 20px;
}

#rostext{
padding: 0 15px;
}
		
		@media (max-width: 850px){
			#rostext {font-size: 10pt;}
		}
		@media screen and (max-width: 758px) {
			
			.profile-section{
				flex-direction: column;
				gap: 0px;
			}
			
		}
		@media (max-width: 500px){ 
		#rostext {font-size: 7pt;}
		}
