/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Header */
.header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-link {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e3c72 0%, #9b6bd3 50%, #2a5298 100%);
  color: white;
  padding: 4rem 0;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;              /* включаем флекс */
  align-items: center;        /* выравниваем по центру по вертикали */
  justify-content: space-between;
  gap: 2rem;                  /* расстояние между текстом и картинкой */
}

.hero-text {
  flex: 1;                    /* текст занимает доступное пространство */
}

.hero-image {
  flex: 1;                    /* картинка занимает столько же */
  display: flex;
  justify-content: center;    /* центрируем картинку */
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #333;
}

/* Sections */
.section-title {
  font-size: 2rem;
  color: #1e3c72;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-intro {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.deposit-withdraw {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

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

.process-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.process-icon i {
  color: white;
  font-size: 1.5rem;
}

.process-steps {
  margin: 1rem 0;
  padding-left: 1rem;
}

.process-steps li {
  margin-bottom: 0.5rem;
}

/* Tables */
.crypto-table {
  padding: 4rem 0;
}

.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 600px;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  font-weight: 600;
}

tr:hover {
  background-color: #f8f9fa;
}

/* Comparison Section */
.comparison {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.comparison-image {
  text-align: center;
  margin: 2rem 0;
}

.comparison-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Legal, Tax, and Risk Sections */
.legal-section,
.tax-section,
.risks-section {
  padding: 4rem 0;
}

.tax-section {
  background-color: #f8f9fa;
}

/* Conclusion */
.conclusion {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.conclusion-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.conclusion-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.conclusion-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.conclusion-text {
  flex: 1;
}


/* FAQ Section */
.faq {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

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

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #1e3c72;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-item h3 i {
  color: #ff6b35;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ff6b35;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b35;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #ccc;
}

/* Indian-inspired accents */
.hero {
  background: linear-gradient(135deg, #1e3c72 0%, #9b6bd3 50%, #2a5298 100%);
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #228b22 100%);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;   /* текст сверху, картинка снизу */
    text-align: center;
  }
  .hero-cta {
    flex-direction: column;
    gap: 1rem;          /* вертикальный отступ между кнопками */
  }
  .hero-image {
    margin-top: 1.5rem;
  }
  .conclusion-content {
    flex-direction: column;
    text-align: center;
  }
  .conclusion-image {
    margin-top: 1.5rem;
  }
}

  .hero-cta {
  display: flex;
  gap: 1.5rem;          /* увеличено расстояние между кнопками */
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .nav {
    justify-content: center;
    width: 100%;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 15px;
  }

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  th,
  td {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .process-card,
  .faq-item {
    padding: 1.5rem;
  }
}
