* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  width: 100%;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}
.main-wrapper {
  width: 100%;
  min-height: 100%;
}
.navbar {
  width: 100%;
  background: #ffffff;
  padding: 0 1.5rem;
  height: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}
.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  padding-left: 110px;
}
.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: inherit;
}
.logo-icon {
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  height: 150px;
  width: auto;
  z-index: 101;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.15));
}
.logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}
.nav-links a:hover {
  color: #667eea;
}
.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #2d3748;
  margin: 5px;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hero-section {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section.privacy-hero {
  padding: 4rem 1.5rem;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-heading {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  word-wrap: break-word;
}
.hero-heading.privacy-title {
  margin-bottom: 0.5rem;
}
.hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-text.privacy-date {
  margin-top: 0;
}
.hero-button {
  display: inline-block;
  background: white;
  color: #667eea;
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.stats-section {
  width: 100%;
  background: white;
  padding: 4rem 1.5rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 600;
}
.intro-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
.intro-section.page-intro {
  padding-top: 100px;
  min-height: 60vh;
}
.intro-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}
.text-black {
  color: #000000;
}
.mb-1 {
  margin-bottom: 1rem;
}
.timeline-section {
  width: 100%;
  background: white;
  padding: 5rem 1.5rem;
}
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2d3748;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #718096;
}
.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
}
.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 75px;
  top: 40px;
  bottom: -40px;
  width: 3px;
  background: linear-gradient(180deg, #667eea, #764ba2);
}
.timeline-item:last-child::before {
  display: none;
}
.timeline-year {
  font-size: 2rem;
  font-weight: 900;
  color: #667eea;
  text-align: center;
  position: relative;
  padding-top: 5px;
}
.timeline-year::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 25px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  box-shadow: 0 0 0 6px white, 0 0 0 10px #e2e8f0;
}
.timeline-content {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #667eea;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.75rem;
}
.timeline-description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
}
.timeline-description strong {
  color: #2d3748;
}
.read-more-btn {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
}
.read-more-btn:hover {
  text-decoration: underline;
}
.article-section {
  padding: 100px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.article-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.2;
}
.article-meta {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}
.article-content {
  font-family: "Segoe UI", sans-serif;
}
.article-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}
.article-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 4px solid #007bff;
  padding-left: 15px;
}
.article-content em {
  color: #007bff;
  font-style: normal;
  font-weight: 600;
}
.article-divider {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #ddd;
}
.next-article {
  margin-top: 50px;
  text-align: right;
}
.text-center {
  text-align: center !important;
}
.timeline-end-msg {
  margin-bottom: 15px;
  color: #666;
}
.contact-highlight-box {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}
.btn-telegram {
  display: inline-block;
  padding: 15px 30px;
  background-color: #0088cc;
  color: rgb(0, 0, 0);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s;
}
.btn-telegram:hover {
  background-color: #0077b5;
  color: white;
}
.conclusion-section {
  background: #2d3748;
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
}
.conclusion-title {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.conclusion-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}
.policy-section {
  background: white;
  padding: 4rem 1.5rem;
  width: 100%;
}
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  word-wrap: break-word;
}
.policy-container h2 {
  color: #2d3748;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
}
.policy-container p {
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.policy-container ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
  color: #4a5568;
}
.policy-container li {
  margin-bottom: 0.5rem;
}
.policy-container a {
  color: #667eea;
  text-decoration: none;
  word-break: break-all;
}
.footer {
  width: 100%;
  background: #1a202c;
  color: #a0aec0;
  padding: 10rem 5rem;
  text-align: center;
  border-top: 1px solid #2d3748;
}
.footer-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-text {
  margin: 0;
  font-weight: 600;
  color: #cbd5e0;
}
.footer-subtext {
  font-size: 0.95rem;
  margin-top: 15px;
  color: #718096;
  line-height: 1.5;
}
.footer a {
  color: #718096;
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: #cbd5e0;
}
.footer-social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.footer-social-links a {
  color: #718096;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer-social-links a:hover {
  color: #667eea;
}
.separator {
  color: #4a5568;
}
.styled-link {
  color: #667eea;
  text-decoration: none;
  font-weight: bold;
}
.styled-link:hover {
  text-decoration: underline;
}
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d3748;
  color: white;
  padding: 20px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}
#cookie-banner p {
  margin: 0 0 15px 0;
  font-size: 0.95rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#cookie-banner a {
  color: #667eea;
  text-decoration: underline;
}
.cookie-btn-container {
  display: flex;
  justify-content: center;
  gap: 15px;
}
#cookie-banner button {
  padding: 8px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
#accept-cookies {
  background: #667eea;
  color: white;
  border: none;
}
#accept-cookies:hover {
  background: #5a67d8;
  transform: translateY(-2px);
}
#decline-cookies {
  background: transparent;
  border: 1px solid #718096;
  color: #cbd5e0;
}
#decline-cookies:hover {
  border-color: #e53e3e;
  color: #e53e3e;
  background: rgba(229, 62, 62, 0.1);
}
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .navbar {
    padding: 0 1rem;
    height: 80px;
  }
  .hamburger {
    display: block;
    z-index: 1001;
    margin-right: 5px;
  }
  .logo {
    padding-left: 70px;
  }
  .logo-icon {
    height: 90px;
    left: -0.5rem;
  }
  .logo-text {
    font-size: 1.3rem;
  }
  .nav-links {
    position: fixed;
    right: 0;
    height: 100vh;
    top: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    z-index: 999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .nav-links li {
    opacity: 1 !important;
    margin: 1.5rem 0;
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    font-size: 1.3rem;
    color: white !important;
    font-weight: 700;
    display: block;
  }
  .nav-active {
    transform: translateX(0%);
  }
  .policy-section {
    padding: 2rem 1.2rem;
  }
  .policy-container h2 {
    font-size: 1.3rem;
  }
  .hero-heading {
    font-size: 2.2rem;
  }
  .hero-section {
    padding: 4rem 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding-left: 15px;
  }
  .timeline-item::before {
    left: 0;
    top: 10px;
    bottom: -30px;
  }
  .timeline-year {
    text-align: left;
    font-size: 1.5rem;
    padding-left: 20px;
  }
  .timeline-year::after {
    left: -24px;
    right: auto;
    top: 8px;
  }
  .timeline-content {
    padding: 1.5rem;
    border-left: none;
    border-top: 4px solid #667eea;
    margin-left: 10px;
  }
  .article-title {
    font-size: 1.8rem;
  }
  .article-section {
    padding: 80px 20px 40px;
  }
}
@media (max-width: 380px) {
  .logo {
    padding-left: 60px;
  }
  .logo-icon {
    height: 80px;
  }
  .logo-text {
    font-size: 1.1rem;
  }
  .hero-heading {
    font-size: 1.8rem;
  }
  .policy-section {
    padding: 1.5rem 0.8rem;
  }
  .policy-container p {
    font-size: 0.95rem;
  }
  .hero-button {
    padding: 0.7rem 1.5rem;
    width: 100%;
    text-align: center;
  }
  .stat-item {
    padding: 0.5rem;
  }
  .timeline-content {
    padding: 1rem;
  }
  .intro-section {
    padding: 4rem 1.5rem;
  }
  .intro-title {
    font-size: 2rem;
  }
  .article-title {
    font-size: 1.6rem;
  }
}
