:root {
  --primary-color: #7F00FF;
  --secondary-color: #E100FF;
  --accent-color: #00E1FF;
  --dark-color: #1A1A2E;
  --text-color: #333;
  --light-text: #fff;
  --bg-color: #f5f5f7;
  --card-bg: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.header {
  background-color: var(--dark-color);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.site-title {
  color: var(--light-text);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

/* Main section */
.main-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.main-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" fill-opacity="0.05"/><circle cx="20" cy="80" r="20" fill="white" fill-opacity="0.05"/><circle cx="80" cy="20" r="20" fill="white" fill-opacity="0.05"/></svg>');
  background-size: 200px;
  opacity: 0.3;
}

.banner-content {
  position: relative;
  z-index: 1;
}

.main-heading {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.banner-text {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--dark-color);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0,225,255,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,225,255,0.4);
}

/* Benefits section */
.benefits-section {
  padding: 5rem 0;
  background-color: var(--card-bg);
}

.section-title {
  text-align: center;
  color: var(--dark-color);
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.benefit-card {
  background-color: var(--bg-color);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
}

.benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 0 0 10px 10px;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
}

.benefit-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Process section */
.process-section {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.process-step {
  flex: 0 0 30%;
  margin-bottom: 2rem;
  text-align: center;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step-title {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.action-container {
  text-align: center;
  margin-top: 3rem;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--light-text);
  padding: 3rem 0 1.5rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-info {
  flex: 0 0 60%;
  margin-bottom: 2rem;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links {
  flex: 0 0 35%;
}

.footer-links h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--accent-color);
}

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

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

.links-list a {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s;
}

.links-list a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive styles */
@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
  }

  .process-step {
    flex: 0 0 100%;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-info, .footer-links {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 1.2rem;
  }

  .main-heading {
    font-size: 1.7rem;
  }

  .banner-text {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 12px 25px;
    font-size: 0.8rem;
  }

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