* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);
  color: #fff;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  flex: 1;
}

header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.page {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: none;
}

.page.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.input-group {
  margin-bottom: 25px;
  position: relative;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.1rem;
}

input,
select {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

input:focus,
select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.suggestions {
  position: absolute;
  width: 100%;
  background: rgba(30, 30, 40, 0.95);
  border-radius: 0 0 10px 10px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.suggestion-item:hover {
  background: rgba(255, 215, 0, 0.2);
}

.station-info {
  flex: 1;
}

.station-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.station-region {
  font-size: 0.9rem;
  opacity: 0.8;
}

.station-type {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-left: 10px;
}

.station-type-1 {
  background: #4CAF50;
}

.station-type-2 {
  background: #FF9800;
}

.station-distance {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-left: 10px;
  min-width: 70px;
  text-align: right;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(45deg, #ff8c00, #ffd700);
  color: #1a1a2e;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-top: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  background: linear-gradient(45deg, #ffd700, #ff8c00);
}

.btn:active {
  transform: translateY(1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.1);
}

.location-btn {
  background: linear-gradient(45deg, #2196F3, #21CBF3);
}

.btn-disabled {
  background: #555;
  cursor: not-allowed;
}

.btn-disabled:hover {
  transform: none;
  background: #555;
}

.route-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.route-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.5);
}

.route-card.selected {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.route-card.expired {
  opacity: 0.5;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  position: relative;
}

.route-card.expired::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  border-radius: 12px;
}

.route-card.expired:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-5px);
  opacity: 0.7;
}

.route-card.expired .route-title {
  color: #ffd700;
  position: relative;
  z-index: 1;
}

.route-card.expired.selected {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  opacity: 0.8;
}

.route-card.expired.selected::after {
  display: none;
}

.route-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.route-details {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  flex-wrap: wrap;
}

.route-info {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 10px;
}

.route-info i {
  margin-right: 8px;
  color: #ffd700;
}

#map {
  height: 450px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.filter-group {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
  color: #ffd700;
}

.next-stops {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.stop-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 15px;
  border-bottom: none;
}

.stop-info:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stop-name {
  font-weight: 600;
  font-size: 1.2rem;
}

.stop-type {
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.station-badge {
  background: #4CAF50;
}

.stop-badge {
  background: #FF9800;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  gap: 20px;
}


#page1 .nav-buttons {
  justify-content: space-between;
  margin-bottom: 30px;
}


#page2 .nav-buttons {
  margin-top: 50px;
}


#page2 .nav-buttons .btn {
  margin-bottom: 0;
}


#page2 p {
  margin-bottom: 15px;
}

#page2 .routes-list {
  margin-bottom: 40px;
}

#page2 h2 {
  margin-bottom: 20px;
}

#page2 #routesList {
  margin-top: 30px;
  margin-bottom: 40px;
}


#page3 p {
  margin-bottom: 10px;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 30px 0;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #ff8c00, #ffd700);
  width: 33%;
  transition: width 0.5s ease;
}

.progress-66 {
  width: 66%;
}

.progress-100 {
  width: 100%;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.step {
  text-align: center;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  flex: 1;
  position: relative;
  padding: 0 10px;
}

.step.active {
  color: #ffd700;
}

.step-text {
  padding: 0 10px;
  position: relative;
  display: inline-block;
}

.api-status {
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.api-success {
  background: rgba(46, 204, 113, 0.2);
  border: 1px solid #2ecc71;
}

.api-error {
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid #e74c3c;
}

.api-loading {
  background: rgba(52, 152, 219, 0.2);
  border: 1px solid #3498db;
}

.api-status i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.loader {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 4px solid #ffd700;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

.geolocation-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  pointer-events: auto;
}


#map {
  position: relative;
}

#map .geolocation-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}


.ymaps-2-1-79-map {
  position: relative;
}

.geolocation-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.geolocation-btn i {
  color: #1a73e8;
  font-size: 20px;
}

.geolocation-btn.active {
  background: #1a73e8;
}

.geolocation-btn.active i {
  color: white;
}

.geolocation-status {
  position: absolute;
  bottom: 70px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 100;
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.no-routes {
  text-align: left;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid #e74c3c;
}

.no-routes h3 {
  color: #e74c3c;
  margin-bottom: 15px;
}

.no-routes ul {
  margin: 15px 0;
  padding-left: 20px;
}

.no-routes li {
  margin-bottom: 8px;
}

.no-routes code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}

.input-with-clear {
  position: relative;
  display: flex;
  align-items: center;
}

.clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.clear-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.swap-stations-btn {
  text-align: center;
  margin: 15px 0;
}

.swap-stations-btn .btn {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.limits-info {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #ffd700;
}

.user-limit {
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 8px;
}

.global-limit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

#userRemaining,
#globalUsed {
  font-weight: bold;
  color: #ffd700;
}

.site-footer {
  width: calc(100% + 40px);
  background: #181c24;
  color: #fff;
  padding: 0;
  position: relative;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -40px;
}

.footer-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 56px;
}

.footer-brand {
  font-weight: 700;
  color: #ffd700;
  letter-spacing: 1px;
  font-size: 1.2rem;
  text-decoration: none;
  margin-right: 32px;
  transition: color 0.2s;
  text-align: center;
}

.footer-link.active {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.08);
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.footer-brand.active {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.08);
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  display: inline-block;
}

.footer-links-group {
  display: flex;
  gap: 32px;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  padding: 4px 8px;
  border-radius: 4px;
}

.footer-link:hover {
  color: #fff;
}

@media (max-width: 1200px) {
  .footer-nav {
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .footer-nav {
    padding: 0 16px;
  }

  .footer-links-group {
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .footer-nav {
    flex-direction: column;
    align-items: stretch;
    padding: 0 12px;
    height: auto;
  }

  .footer-links-group {
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .footer-brand {
    margin-right: 0;
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-nav {
    padding: 0 8px;
  }

  .footer-links-group {
    gap: 14px;
    margin-top: 10px;
  }

  .site-footer {
    font-size: 1rem;
    min-height: 52px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    padding: 0 4px;
  }

  .footer-links-group {
    gap: 12px;
    margin-top: 12px;
  }

  .site-footer {
    font-size: 0.95rem;
    min-height: 48px;
  }

  .footer-brand {
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .footer-nav {
    padding: 0 2px;
  }

  .footer-links-group {
    gap: 10px;
    margin-top: 14px;
  }

  .site-footer {
    font-size: 0.9rem;
    min-height: 44px;
  }

  .footer-brand {
    font-size: 1rem;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .footer-nav {
    flex-direction: row;
    height: 40px;
    padding: 0 8px;
  }

  .footer-links-group {
    flex-direction: row;
    margin-top: 0;
    gap: 12px;
  }

  .footer-brand {
    margin-bottom: 0;
    margin-right: 16px;
    width: auto;
  }

  .site-footer {
    min-height: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  header {
    padding: 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .page {
    padding: 15px;
  }

  .route-details {
    flex-direction: column;
    gap: 10px;
  }

  .nav-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .filter-group {
    flex-direction: column;
    gap: 10px;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
  }

  .station-info {
    flex-direction: column;
    gap: 8px;
  }

  .station-name,
  .station-region {
    flex: none;
  }

  #map {
    height: 350px;
  }

  .step {
    font-size: 0.8rem;
    padding: 0 5px;
  }

  .step-text {
    padding: 0 5px;
  }

  .input-group {
    margin-bottom: 20px;
  }

  .input-with-clear input {
    font-size: 1rem;
    padding: 12px 40px 12px 15px;
  }

  .clear-btn {
    right: 15px;
    width: 30px;
    height: 30px;
  }

  .swap-stations-btn {
    margin: 20px 0;
  }

  .swap-stations-btn .btn {
    width: 100%;
    padding: 10px 20px;
  }

  .suggestions {
    max-height: 200px;
  }

  .suggestion-item {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .next-stops {
    padding: 15px;
  }

  .stop-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .stop-name {
    font-size: 1rem;
  }

  .stop-desc {
    font-size: 0.9rem;
  }

  .stop-type {
    align-self: center;
    padding: 5px 15px;
    font-size: 0.8rem;
  }

  .geolocation-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .geolocation-status {
    bottom: 75px;
    right: 15px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .route-card {
    padding: 15px;
    margin-bottom: 15px;
  }

  .route-card.expired {
    opacity: 0.5;
  }

  .route-card.expired:hover {
    opacity: 0.7;
  }

  .route-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .api-status {
    padding: 12px;
    font-size: 0.9rem;
  }

  .loader {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 5px;
  }

  header {
    padding: 10px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .page {
    padding: 10px;
  }

  input,
  select {
    padding: 12px 15px;
    font-size: 1rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .route-title {
    font-size: 1rem;
  }

  .route-info {
    font-size: 0.9rem;
  }

  .suggestion-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .station-distance {
    margin-left: 0;
    margin-top: 5px;
    text-align: left;
  }

  .nav-buttons {
    gap: 10px;
  }

  .btn {
    padding: 15px 20px;
  }

  #map {
    height: 300px;
  }

  .step {
    font-size: 0.7rem;
    padding: 0 3px;
  }

  .step-text {
    padding: 0 3px;
  }

  .input-group {
    margin-bottom: 15px;
  }

  .input-with-clear input {
    padding: 10px 35px 10px 12px;
    font-size: 0.9rem;
  }

  .clear-btn {
    right: 10px;
    width: 25px;
    height: 25px;
  }

  .swap-stations-btn {
    margin: 15px 0;
  }

  .swap-stations-btn .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .suggestions {
    max-height: 150px;
  }

  .suggestion-item {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .next-stops {
    padding: 12px;
  }

  .stop-info {
    gap: 8px;
  }

  .stop-name {
    font-size: 0.9rem;
  }

  .stop-desc {
    font-size: 0.8rem;
  }

  .stop-type {
    padding: 4px 12px;
    font-size: 0.7rem;
  }

  .geolocation-btn {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }

  .geolocation-status {
    bottom: 65px;
    right: 10px;
    font-size: 11px;
    padding: 5px 10px;
  }

  .route-card {
    padding: 12px;
    margin-bottom: 12px;
  }

  .route-card.expired {
    opacity: 0.5;
  }

  .route-card.expired:hover {
    opacity: 0.7;
  }

  .route-title {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .api-status {
    padding: 10px;
    font-size: 0.8rem;
  }

  .loader {
    width: 35px;
    height: 35px;
  }

  .filter-group {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

body:has(.container:only-child) .container {
  padding: 10px 20px;
}

body:has(.container:only-child) .site-footer {
  margin-top: 20px;
}

.simple-page .container {
  padding: 10px 20px;
}

.simple-page .site-footer {
  margin-top: 20px;
}

a[href^="mailto:"],
a[href*="t.me"] {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.2s;
}

a[href^="mailto:"]:hover,
a[href*="t.me"]:hover {
  color: #fff;
  text-decoration: underline;
}


.hero-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #ffd700;
  text-align: center;
}

.hero-content>p {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.feature-card i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
  display: block;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.feature-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}

.info-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.info-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffd700;
  text-align: center;
}

.info-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-text h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.info-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.info-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 25px;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info-stats {
    flex-direction: row;
    justify-content: space-around;
  }

  .stat-item {
    flex: 1;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 20px;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 20px;
  }

  .info-section {
    padding: 25px;
  }

  .info-section h2 {
    font-size: 1.6rem;
  }

  .info-stats {
    flex-direction: column;
  }
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-section h3 i {
  font-size: 1.2rem;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.9;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-list li:last-child {
  border-bottom: none;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-3px);
}

.advantage-card i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 10px;
  display: block;
}

.advantage-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #fff;
}

.advantage-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.4;
}

.user-types {
  list-style: none;
  padding: 0;
}

.user-types li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  line-height: 1.5;
}

.user-types li:last-child {
  border-bottom: none;
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.tech-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-label {
  font-weight: bold;
  color: #ffd700;
  font-size: 0.9rem;
}

.tech-value {
  font-size: 0.9rem;
  opacity: 0.8;
}

.roadmap {
  list-style: none;
  padding: 0;
}

.roadmap li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.roadmap li:last-child {
  border-bottom: none;
}

.roadmap li i {
  color: #ffd700;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .about-section {
    padding: 20px;
  }

  .about-section h3 {
    font-size: 1.2rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tech-stack {
    grid-template-columns: 1fr;
  }

  .tech-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 15px;
  }

  .about-section h3 {
    font-size: 1.1rem;
  }

  .advantage-card {
    padding: 15px;
  }

  .roadmap li {
    font-size: 0.9rem;
  }
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section {
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-section h3 i {
  font-size: 1.2rem;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.faq-item a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-item a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 20px;
  }

  .faq-section h3 {
    font-size: 1.2rem;
  }

  .faq-item h4 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 15px;
  }

  .faq-section h3 {
    font-size: 1.1rem;
  }

  .faq-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .faq-item h4 {
    font-size: 0.95rem;
  }

  .faq-item p {
    font-size: 0.85rem;
  }
}

.contacts-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-section {
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-section h3 i {
  font-size: 1.2rem;
}

.contact-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item i {
  font-size: 1.5rem;
  color: #ffd700;
  width: 30px;
  text-align: center;
}

.contact-item a {
  color: #ffd700;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
  margin-top: 10px;
}

.feedback-list {
  list-style: none;
  padding: 0;
}

.feedback-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feedback-list li:last-child {
  border-bottom: none;
}

.feedback-list li i {
  color: #ffd700;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.response-time {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.time-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.time-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-icon i {
  font-size: 1.5rem;
  color: #ffd700;
}

.time-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #fff;
}

.time-info p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section h3 i {
  font-size: 1.2rem;
}

.policy-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.9;
}

.data-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.data-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.data-item i {
  font-size: 1.5rem;
  color: #ffd700;
  margin-top: 5px;
}

.data-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #fff;
}

.data-info p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  line-height: 1.4;
}

.usage-list,
.exceptions-list,
.cookie-list,
.rights-list {
  list-style: none;
  padding: 0;
}

.usage-list li,
.exceptions-list li,
.cookie-list li,
.rights-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.usage-list li:last-child,
.exceptions-list li:last-child,
.cookie-list li:last-child,
.rights-list li:last-child {
  border-bottom: none;
}

.usage-list li i,
.exceptions-list li i,
.cookie-list li i,
.rights-list li i {
  color: #ffd700;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.security-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-item i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 15px;
  display: block;
}

.security-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.security-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.4;
  margin: 0;
}

.retention-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.retention-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.retention-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.retention-icon i {
  font-size: 1.5rem;
  color: #ffd700;
}

.retention-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #fff;
}

.retention-details p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  line-height: 1.4;
}

.privacy-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.last-updated {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {

  .contact-section,
  .policy-section {
    padding: 20px;
  }

  .contact-section h3,
  .policy-section h3 {
    font-size: 1.2rem;
  }

  .data-types,
  .security-features,
  .response-time,
  .retention-info {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-item,
  .time-item,
  .data-item,
  .retention-item {
    padding: 15px;
  }

  .usage-list li,
  .exceptions-list li,
  .cookie-list li,
  .rights-list li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {

  .contact-section,
  .policy-section {
    padding: 15px;
  }

  .contact-section h3,
  .policy-section h3 {
    font-size: 1.1rem;
  }

  .contact-item,
  .time-item,
  .data-item,
  .retention-item {
    padding: 12px;
  }

  .contact-item i,
  .time-icon i,
  .data-item i,
  .retention-icon i {
    font-size: 1.2rem;
  }

  .usage-list li,
  .exceptions-list li,
  .cookie-list li,
  .rights-list li {
    font-size: 0.85rem;
  }
}
