* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

.about-section {
  background: linear-gradient(90deg, #f9f871, #ffb6f2);
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin: 40px auto;
  max-width: 1200px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 300px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-text li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

body {
  background: linear-gradient(to bottom right, #fff 0%, #f0f9ff 100%);
  color: #333;
  line-height: 1.6;
}

header {
  background: linear-gradient(to right, #e94aa5, #32c2e8, #f5d63d);
  color: white;
  padding: 20px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  max-width: 120px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  object-fit: contain;
}


nav {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

nav a {
  color: white;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

nav a:hover {
  background-color: rgba(0, 0, 0, 0.25);
}

.contact-card {
  background: #ffffff;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  border-left: 6px solid #ff4081;
  border-radius: 10px;
  color: #444;
}

.contact-card p {
  margin: 10px 0;
  font-size: 1rem;
}

.fancy-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.fancy-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #e91e63;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.fancy-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fce4ec;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: left;
  color: #333;
}

.fancy-card p,
.fancy-card li {
  font-size: 1rem;
  margin: 10px 0;
}

.fancy-card a {
  text-decoration: none;
  color: #c2185b;
  font-weight: 500;
}

.fancy-card a:hover {
  text-decoration: underline;
}


section {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

.site-title h1 {
  margin: 0;
  font-size: 1.8rem;
}

.site-title p {
  margin: 0;
  font-size: 0.9rem;
}

h2 {
  color: #e94aa5;
  margin-bottom: 15px;
}

ul {
  list-style: disc inside;
}

.info-section {
  padding: 40px 20px;
  background: #f4f7fa;
  border-top: 1px solid #ccc;
}

.info-section h2 {
  font-size: 1.8rem;
  color: #2c2c2c;
  margin-bottom: 20px;
  text-align: center;
}

.doc-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.doc-list li {
  margin: 12px 0;
}

.doc-list a {
  text-decoration: none;
  color: #0077cc;
  font-weight: 500;
  transition: color 0.2s;
}

.doc-list a:hover {
  color: #004b8d;
}

.details-block {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  color: #333;
}

.details-block p {
  margin: 8px 0;
  font-size: 1rem;
}

.qr-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.qr-box {
  text-align: center;
}

.qr-box img {
  width: 160px; /* было 120px */
  height: 160px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}


.qr-box img:hover {
  transform: scale(1.05);
}

.qr-box p {
  margin-top: 10px;
  font-weight: 500;
  color: #444;
}

.top-nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.top-nav a {
  color: white;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.top-nav a:hover {
  background-color: rgba(0, 0, 0, 0.25);
}

.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-buttons button {
  padding: 10px 20px;
  border: none;
  background-color: #ddd;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.tab-buttons button.active {
  background-color: #32c2e8;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

footer {
  background-color: #f7941d;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.report-header {
  background: #fce4ec;
  color: #c2185b;
  text-align: center;
  padding: 40px 20px;
}

.report-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.report-summary {
  background: #fce4ec;
  padding: 20px;
  border-radius: 12px;
  margin: 30px 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.report-summary h2 {
  margin-bottom: 10px;
  color: #c2185b;
}

.report-summary p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.report-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.report-table th,
.report-table td {
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.report-table thead {
  background-color: #f8bbd0;
}

.report-chart {
  margin-top: 40px;
  text-align: center;
}

.chart-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.chart-container img {
  width: 320px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .logo {
    justify-content: center;
    width: 100%;
  }

  .center-name {
    font-size: 1.2rem;
  }

  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .about-section .about-text {
    width: 100%;
  }

  .about-section img {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
  }

  .info-blocks {
    flex-direction: column;
    gap: 20px;
  }

  .info-block {
    width: 100%;
  }

  .contacts {
    padding: 20px;
    text-align: center;
  }

  .contact-details {
    flex-direction: column;
    gap: 15px;
  }

  .qr-codes {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .qr-codes img {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .report-container {
    padding: 20px;
  }

  .report-header {
    font-size: 1.3rem;
    text-align: center;
  }

  .report-section {
    margin-bottom: 30px;
    text-align: center;
  }

  .report-files {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .report-files a {
    width: 80%;
    text-align: center;
  }

  .report-charts {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .report-charts img {
    width: 100%;
    max-width: 320px;
  }
}

/* Бургер-кнопка */
.burger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #3a3a3a;
}

@media (max-width: 768px) {
logo img {
    height: 40px;
  }

  .center-name {
    font-size: 1rem;
  }

  .nav-menu {
  width: 100%;
}

.nav-menu ul {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav-menu a {
  padding: 8px 12px;
  font-size: 0.95rem;
}

}
