body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #00112a;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  background-color: #001c3b;
  padding: 10px 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  gap: 200px; 
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #00ff73;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}

@media (min-width: 1024px) {
  .header-flex {
    height: 80px;
  }

  .logo {
    font-size: 28px;
  }

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.logo-text {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-left: 10px;
}

  .nav a {
    font-size: 17px;
  }
}

.hero {
  padding: 140px 0;
  background-image: url('img/banner-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
}

.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-text {
  flex: 1 1 550px;
  max-width: 600px;
  text-align: left;
}

.hero h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 32px;
  color: #ffffff;
  text-align: left;
}

.hero .highlight {
  color: #00ff73;
}

.hero p {
  font-size: 18px;
  margin-bottom: 48px;
  color: #d0d0d0;
  line-height: 1.6;
  max-width: 100%;
}

.hero-buttons {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  min-width: 160px;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background-color: #00ff73;
  color: #000000;
}

.btn-primary:hover {
  background-color: #00e368;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 115, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #00ff73;
  border: 2px solid #00ff73;
}

.btn-secondary:hover {
  background-color: rgba(0, 255, 115, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 115, 0.2);
}

.hero-image {
  flex: 1 1 500px;
  max-width: 600px;
  text-align: right;
  margin-top: 30px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.products-scroll-cards {
  padding: 40px 20px 100px;
  background-color: #000;
  color: #fff;
}

.section-label {
  text-align: center;
  color: #00cc66;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-intro {
  margin-bottom: 100px;
}

.section-intro p {
  text-align: center;
  color: #ccc;
  font-size: 16px;
  margin-bottom: 40px;
}

.section-title {
  text-align: center;
  color: #00ff73;
  font-size: 24px;
  margin-bottom: 30px;
}

.products-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 24px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.product-card {
  background-color: #071018;
  border-radius: 12px;
  flex: 0 0 280px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 255, 115, 0.2);
  transition: transform 0.3s ease;
}

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

.product-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.product-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.product-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  padding: 20px;
  border-radius: 0 0 12px 12px;
}

.overlay-text h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: bold;
}

.overlay-text p {
  font-size: 14px;
  line-height: 1.5;
}

.section-title {
  font-size: 32px;
  color: #00ff73;
  text-align: center;
  margin-bottom: 40px;
}

.feature-grid,
.advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background-color: #07223b;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 255, 115, 0.1);
}

.card h4 {
  color: #00ff73;
  margin-bottom: 10px;
}

.card p {
  color: #cccccc;
}

.card a {
  color: #00ff73;
  text-decoration: none;
  font-weight: 500;
}

.products-grid-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
  color: #000;
}

.section-group {
  max-width: 1100px;
  margin: 0 auto 80px auto;
  text-align: center;
}

.section-group h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #002a46;
}

.section-group p {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background-color: #D8D8D8;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.product-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px;
  color: #002a46;
}

.product-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.advantages-v2 {
  padding: 60px 0;
  background-color: #001a2b;
}

.advantages-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.advantages-text {
  flex: 1 1 50%;
  max-width: 640px;
  color: #fff;
}

.advantages-text .section-title {
  font-size: 45px;
  color: #00ff73;
  margin-bottom: 40px;
  text-align: left;
  line-height: 1.4;
}

.advantage-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.advantage-points .point h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ffffff;
}

.advantage-points .point p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.advantages-image {
  flex: 1 1 45%;
  text-align: center;
}

.advantages-image img {
  max-width: 100%;
  height: auto;
}

.faq details {
  background-color: #0b223e;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
}

.trading-process {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.trading-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #00ff73;
}

.trading-subtitle {
  font-size: 20px;
  text-align: center;
  color: #ccc;
  margin-bottom: 60px;
}

.process-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.process-item.reverse {
  flex-direction: row-reverse;
}

.process-item img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  flex-shrink: 0;
}

.process-text {
  flex: 1;
  min-width: 280px;
}

.process-text h3 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #fff;
}

.process-text p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 480px;
}

.process-text a {
  font-size: 15px;
  color: #00ff9f;
  text-decoration: none;
  font-weight: 500;
}

.process-text a:hover {
  text-decoration: underline;
}

.faq summary {
  font-weight: 600;
  color: #00ff73;
  margin-bottom: 5px;
}

.footer {
  background-color: #051229;
  color: #ccc;
  padding: 60px 40px 30px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #ccc;
  font-size: 14px;
  background-color: #011633;
}

.footer-text {
  margin-bottom: 30px;
  line-height: 1.8;
  color: #ccc;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #222;
  text-align: center;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

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

.logo-text {
  font-size: 18px;
  color: white;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  color: #aaa;
  font-size: 14px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
