/* Modern CSS with vibrant colorful theme and sleek design */
:root {
  --primary-color: #FF5757;
  --secondary-color: #8C52FF;
  --tertiary-color: #00B8FF;
  --bg-color: #f0f2f5;
  --card-bg: #ffffff;
  --text-color: #333333;
  --light-text: #777777;
  --border-radius: 12px;
  --font-primary: 'Quicksand', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

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

/* Header and Navigation */
.site-header {
  background-color: var(--card-bg);
  box-shadow: var(--box-shadow);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

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

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

.logo-svg {
  width: 40px;
  height: 40px;
}

.site-title {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
  margin-top: 5rem;
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(255, 87, 87, 0.1) 0%, rgba(140, 82, 255, 0.1) 50%, rgba(0, 184, 255, 0.1) 100%);
  border-radius: 0 0 50% 50% / 15%;
  text-align: center;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 700;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(140, 82, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color), var(--tertiary-color));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.cta-button:hover:before {
  opacity: 1;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(140, 82, 255, 0.4);
  color: white;
}

/* Sections */
.section {
  padding: 5rem 0;
}

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

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Feature Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 70px;
  height: 70px;
  padding: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-content {
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 700;
  text-align: center;
}

.card-text {
  color: var(--light-text);
  text-align: center;
}

/* Benefits Section */
.benefits {
  background-color: rgba(140, 82, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 4rem 2rem;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(140, 82, 255, 0.3);
}

.benefit-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Call to Action */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 4rem 2rem;
  border-radius: var(--border-radius);
  margin: 5rem 0;
  text-align: center;
  color: white;
  box-shadow: var(--box-shadow);
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.cta-button-alt {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--primary-color);
  font-weight: 700;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-alt:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--secondary-color);
}

/* Footer */
.footer {
  background: white;
  padding: 4rem 0 2rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
}

.footer-logo-text {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.3rem;
}

.footer-text {
  color: var(--light-text);
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  color: var(--light-text);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--light-text);
  font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  html {
    font-size: 90%;
  }
  
  .hero {
    padding: 4rem 1rem;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .section {
    padding: 4rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cards-container {
    grid-template-columns: 1fr;
  }
  
  .benefits-container {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
}
