
    body {
      font-family: Arial, sans-serif;
      background: #f5f0e6;
      color: #333;
      margin: 0;
      padding: 0;
    }
	container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
    header {
      background-color: #d35400;
      color: #ffffff;
      padding: 20px 0;
      text-align: center;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    nav {
      margin-top: 10px;
    }
    nav a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
      font-weight: bold;
      font-size: 18px;
    }
    nav a:hover {
      text-decoration: underline;
    }

    main {
      max-width: 900px;
      margin: 20px auto;
      padding: 0 15px;
    }
    h1 {
      color: #FFFFFF;
    }
	h2 {
	  color: #d35400;
	}
    .services {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 30px;
    }
    .service {
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      flex: 1 1 250px;
      padding: 15px;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 30px;
    }
    th, td {
      border: 1px solid #ccc;
      padding: 10px;
      text-align: left;
    }
    th {
      background-color: #f0d9b5;
    }
    form {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      max-width: 400px;
      margin-bottom: 50px;
    }
    label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
    }
    input, select {
      width: 100%;
      padding: 8px;
      margin-bottom: 15px;
      border-radius: 4px;
      border: 1px solid #ccc;
      box-sizing: border-box;
    }
    button {
      background-color: #d35400;
      color: white;
      border: none;
      padding: 12px 20px;
      cursor: pointer;
      font-size: 16px;
      border-radius: 4px;
    }
    button:hover {
      background-color: #b24300;
    }
    footer {
      text-align: center;
      padding: 15px 0;
      background-color: #f2eadb;
      color: #666;
    }
    /* Стили для секции контактов */
    section#contacts {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin-bottom: 50px;
    }
	/* Стили для секции о нас */
    section#about {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin-bottom: 50px;
    }
    section#contacts p {
      margin-bottom: 10px;
    }
.active {
      background: #d35400;
    }
.photo-gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 10px;
}

.photo-gallery img {
width: 100%;
height: auto;
border-radius: 8px;
cursor: pointer;
transition: transform 0.3s;
}

.photo-gallery img:hover {
transform: scale(1.05);
}

/ Модальное окно /
.modal {
display: none; / Скрыто по умолчанию /
position: fixed;
z-index: 1000;
padding-top: 60px;
left: 0; top: 0;
width: 100%; height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
margin: auto;
display: block;
max-width: 90%;
max-height: 80vh;
}

.close {
position: absolute;
top: 30px;
right: 35px;
color: white;
font-size: 40px;
font-weight: bold;
cursor: pointer;
}

.close:hover {
color: #bbb;
}
\ Медиа-запросы для адаптивности /
@media (max-width: 600px) {
header {
padding: 15px 0;
}
header h1 {
font-size: 24px;
}
header p {
font-size: 14px;
}
main {
padding: 5px;
}
.service {
margin-bottom: 15px;
}
.photo-gallery {
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}
}