* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-navigation {
  background: linear-gradient(90deg, #f7f9fc 0%, #e8effa 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-navigation .site-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a4d8e;
  transition: color 0.3s ease;
}

.brand-logo a:hover {
  color: #1a3a6e;
}

.menu-links ul {
  display: flex;
  gap: 25px;
}

.menu-links a {
  font-size: 1rem;
  font-weight: 500;
  color: #4a4a4a;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: #2a4d8e;
}

.welcome-banner {
  background: linear-gradient(135deg, #2a4d8e 0%, #1a3a6e 100%);
  padding: 120px 0;
  text-align: left;
  color: #ffffff;
  animation: slideIn 1.2s ease-out;
}

.banner-content {
  max-width: 800px;
}

.banner-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.banner-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
}

.platforms-overview {
  padding: 100px 0;
  background: #f7f9fc;
}

.platforms-collection {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.platform-entry {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: revealUp 1.2s ease-out forwards;
  opacity: 0;
}

.platform-entry:nth-child(1) {
  animation-delay: 0.3s;
}

.platform-entry:nth-child(2) {
  animation-delay: 0.6s;
}

.platform-entry:nth-child(3) {
  animation-delay: 0.9s;
}

.platform-entry:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.entry-rank {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #2a4d8e;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.4rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.entry-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px;
  gap: 40px;
}

.entry-visuals {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 150px;
}

.entry-info {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.info-metrics {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.metric-pair {
  background: #f0f4f8;
  padding: 12px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  min-width: 200px;
}

.metric-title {
  font-weight: 500;
  color: #5a5a5a;
}

.metric-data {
  font-weight: 600;
  color: #2a4d8e;
}

.info-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #3a3a3a;
}

.entry-call a {
  background: linear-gradient(90deg, #2a4d8e 0%, #1a3a6e 100%);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  white-space: nowrap;
}

.entry-call a:hover {
  background: linear-gradient(90deg, #1a3a6e 0%, #2a4d8e 100%);
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(42, 77, 142, 0.3);
}

.queries-panel {
  padding: 100px 0;
  background: #ffffff;
}

.queries-panel h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #2a4d8e;
}

.queries-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.zmkukgsahclwp {
  background: #f7f9fc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  cursor: pointer;
}

.zmkukgsahclwp:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  font-weight: 600;
  font-size: 1.2rem;
  color: #2a4d8e;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: url(../images/plus.png) center/contain no-repeat;
  transition: transform 0.4s ease;
}

.zmkukgsahclwp.active .faq-toggle {
  background: url(../images/minus.png) center/contain no-repeat;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  font-size: 1rem;
  color: #4a4a4a;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.zmkukgsahclwp.active .faq-body {
  max-height: 400px;
  padding: 0 25px 25px;
}

.bottom-section {
  background: linear-gradient(90deg, #1e1e1e 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 80px 0 0;
}

.bottom-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.bottom-brand a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  transition: opacity 0.3s ease;
}

.bottom-brand a:hover {
  opacity: 0.8;
}

.bottom-affiliates {
  display: flex;
  gap: 30px;
}

.advisory-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.advisory-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
}

.bottom-lower {
  background: #1a1a1a;
  padding: 25px 0;
  text-align: center;
}

.bottom-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px;
}

.bottom-menu a {
  font-size: 1rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.bottom-menu a:hover {
  color: #2a4d8e;
}

.bottom-lower p {
  font-size: 0.9rem;
  opacity: 0.7;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .entry-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .entry-info {
    flex-direction: column;
    gap: 30px;
  }

  .entry-call {
    width: 100%;
    text-align: center;
  }

  .entry-call a {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .welcome-banner {
    padding: 80px 0;
  }

  .banner-content h1 {
    font-size: 2.2rem;
  }

  .platforms-overview {
    padding: 60px 0;
  }

  .queries-panel {
    padding: 60px 0;
  }

  .queries-panel h2 {
    font-size: 2rem;
  }

  .bottom-upper {
    flex-direction: column;
    gap: 30px;
  }

  .advisory-blocks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .top-navigation .site-container {
    flex-direction: column;
    gap: 15px;
  }

  .menu-links ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .entry-layout {
    padding: 25px;
  }

  .bottom-menu {
    flex-direction: column;
    gap: 15px;
  }
}