@import url('./header.css');
@import url('./style.css');

body {
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0066FF 0%, #0044CC 50%, #002299 100%);
  padding: 60px 30px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  max-width: unset;
  text-align: center;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Main Content */
.main-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 30px;
}

.overview-intro {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.overview-intro p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

/* Section Styles */
.section {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  border-left: 5px solid #0066FF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
}

.section h2 {
  color: #0066FF;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.section h3 {
  color: #333;
  font-size: 16px;
  margin: 20px 0 10px 0;
  font-weight: 600;
}

.section p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.section ul {
  list-style: none;
  padding-left: 0;
}

.section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

.section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #0066FF;
  border-radius: 50%;
}

.section ul li strong {
  color: #333;
}

.highlight-box {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
  border: 1px solid #d0e3ff;
}

.highlight-box p {
  margin: 0;
  color: #0055dd;
  font-weight: 500;
}

/* Conclusion Section */
.conclusion {
  background: linear-gradient(135deg, #0066FF 0%, #0044CC 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.conclusion h2 {
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}

.conclusion ul {
  list-style: none;
  padding-left: 0;
}

.conclusion ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.conclusion ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #66ff99;
  font-weight: bold;
}

.conclusion p {
  margin-top: 20px;
  font-style: italic;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-button {
  display: inline-block;
  background: #0066FF;
  color: white;
  padding: 18px 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #0055DD;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.cta-info {
  margin-top: 25px;
  padding: 0 20px;
}

.cta-info ul {
  list-style: disc;
  display: inline-block;
  text-align: left;
}

.cta-info ul li {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 20px 25px;
  }

  .main-content {
    padding: 30px 15px;
  }
}