/* Global Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.7;
  background-color: #F5F5F5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: linear-gradient(135deg, #7C4DFF, #311B92);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #F5F5F5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #D1C4E9;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #F5F5F5, #D1C4E9);
  padding: 120px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  color: #212121;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  color: #616161;
  margin-bottom: 40px;
}

/* Content Sections */
.content-section {
  padding: 60px 0;
  background: #FFFFFF;
}

.content-section h2 {
  font-size: 2rem;
  color: #311B92;
  margin-bottom: 20px;
}

.content-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.content-section li {
  font-size: 1rem;
  color: #616161;
  margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #651FFF, #311B92);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  color: #F5F5F5;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1rem;
  color: #D1C4E9;
  margin-bottom: 30px;
}

.cta-btn {
  background: #F5F5F5;
  color: #311B92;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #D1C4E9;
  color: #212121;
}

/* Footer */
.footer {
  background: #212121;
  padding: 40px 0;
  color: #F5F5F5;
  text-align: center;
}

.footer .container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links li a {
  color: #D1C4E9;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-links li a:hover {
  color: #7C4DFF;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a img {
  width: 32px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .content-section h2 {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 0.9rem;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}