   :root {
      --tiffany-color: #0ABAB5;
    }
    body {
      font-family: 'Montserrat', sans-serif;
      line-height: 1.6;
      color: #333;
      background: #f8f9fa;
    }
    /* Основной контейнер с максимальной шириной 900px */
    .main-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }
    /* Хедер */
    header {
      background: linear-gradient(135deg, var(--tiffany-color) 0%, #ffffff 100%);
      color: #fff;
      text-align: center;
      padding: 80px 15px;    margin-top: 70px;
      position: relative;
    }
    header .logo {
      font-size: 2.5rem;
      font-weight: 600;
    }
    /* Навигация */
    nav {
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
    }
    nav .navbar-brand {
      font-size: 1.8rem;
      color: var(--tiffany-color);
    }
    nav .navbar-nav .nav-link {
      font-weight: 500;
      color: #333;
      padding: 10px 15px;
      transition: color 0.3s;
    }
    nav .navbar-nav .nav-link:hover {
      color: var(--tiffany-color);
    }
    /* Разделы */
    section {
      padding: 30px 0;
    }
    .rounded-box {
      background: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      margin-bottom: 30px;
    }
    /* Кнопки */
    .btn-tiffany {
      background-color: var(--tiffany-color);
      border: 1px solid var(--tiffany-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .btn-tiffany:hover {
      background-color: #fff;
      color: #000;
      border-color: var(--tiffany-color);
    }
    .btn-tiffany:hover::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: var(--tiffany-color);
      opacity: 0.2;
    }
    /* Формы */
    #contact-form input.form-control,
    #contact-form textarea.form-control {
      border-radius: 25px;
    }
    @media (min-width: 576px) {
      #contact-form .form-row {
        display: flex;
        gap: 15px;
      }
      #contact-form .form-row > div {
        flex: 1;
      }
    }
    /* Контактная информация: телефон и Telegram на одной строке */
    .contact-info {
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 20px;
    }
    .contact-info a {
      font-weight: 600;
      color: var(--tiffany-color);
      text-decoration: none;
      transition: text-decoration 0.3s;
    }
    .contact-info a:hover {
      text-decoration: underline;
    }
    /* Блок "Обо мне" */
    .about-photo {
      width: 100%;
      max-width: 250px;
      border-radius: 10%;
      object-fit: cover;
      margin-bottom: 15px;
    }
    /* Фотогалерея: вывод фото по 2 в строке */
    .photo-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .photo-grid .photo-item {
      flex: 1 1 calc(50% - 15px);
    }
    .photo-grid .photo-item img {
      width: 100%;
      max-height: 300px;
      object-fit: cover;
      border-radius: 5px;
    }
    /* Блог: карточки записей */
    .blog-post {
      margin-bottom: 30px;
    }
    .blog-post .card {
      border: none;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }
    .blog-post .card:hover {
      transform: translateY(-5px);
    }
    .blog-post img.card-img-top {
      height: 200px;
      object-fit: cover;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }
    /* Отзывы: на главной – вывод в виде сетки по 2 в строке */
    .reviews-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .reviews-grid .review-item {
      flex: 1 1 calc(50% - 15px);
      background: #fff;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .reviews-grid .review-item p {
      margin-bottom: 5px;
      font-size: 0.95rem;
    }
    /* Футер */
    footer {
      background: #fff;
      padding: 20px 0;
      text-align: center;
      border-top: 1px solid #ddd;
      margin-top: 40px;
    }
    footer p {
      font-size: 0.9rem;
      color: #555;
    }
    /* Ссылки "Все записи" и "Больше отзывов" */
    .more-links {
      text-align: center;
      margin-top: 20px;
    }
    .more-links a {
      display: inline-block;
      padding: 10px 20px;
      background-color: var(--tiffany-color);
      color: #fff;
      border-radius: 5px;
      transition: background 0.3s;
      text-decoration: none;
    }
    .more-links a:hover {
      background-color: #099a93;
    }