:root {
  --background: #FDFDFD;
  --text-color: #1C1C1C;
  --highlight: #15154B;
  --accent: #CC2B73;
  --shadow: rgba(0, 0, 0, 0.1);
  --radius: 10px;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--background);
  color: var(--text-color);
  margin: 0;
  overflow-x: hidden;
  line-height: 1.6;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.logo-image {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%; /* делает логотип идеально круглым */
  border: 3px solid white;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* элегантная тень */
  z-index: 2;
}
.main-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 2rem; /* делает края мягко округлыми */
  object-fit: cover; /* обрезает лишнее, сохраняя пропорции */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* лёгкая тень для объёма */
}

.up-site {
  text-align: center;
  padding: 60px 30px;
  background-color: #F8F8F8;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.up-site h1 {
  color: var(--highlight);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.up-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #444;
}

.section {
  margin-top: 2.5rem;
  padding: 1.25rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 8px var(--shadow);
}

.section-title-button {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #343434;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.section-title-button:hover {
  color: var(--accent);
}

.emoji {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.toggle-list {
  display: none;
  list-style-type: square;
  margin-top: 15px;
  padding-left: 20px;
  font-size: 16px;
  color: #666;
}