/* Base Styles */
:root {
  --primary-color: #E91E63;
  --secondary-color: #9C27B0;
  --accent-color: #FF4081;
  --text-color: #333333;
  --light-text: #ffffff;
  --background-color: #f5f5f5;
  --card-bg: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

section {
  padding: 4rem 0;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 15px;
}

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

.logo-svg {
  margin-right: 0.75rem;
}

.logo h1 {
  color: var(--primary-color);
  margin: 0;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  padding: 8rem 0 5rem;
  text-align: center;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
  padding-right: 2rem;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: left;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--light-text);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--light-text);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background-color: var(--primary-color);
  color: var(--light-text);
}

.btn-large:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
  background-color: var(--card-bg);
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background-color: var(--card-bg);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature h3 {
  color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
  background-color: #f9f9f9;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.step {
  flex-basis: calc(33.333% - 2rem);
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

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

.step h3 {
  color: var(--primary-color);
}

/* Try Now Section */
.try-now {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--light-text);
  text-align: center;
  padding: 5rem 0;
}

.try-now h2 {
  color: var(--light-text);
}

.try-now p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: #222222;
  color: var(--light-text);
  padding-top: 3rem;
}

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

.footer-logo span {
  font-size: 1.3rem;
  font-weight: bold;
  margin-left: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  margin-right: 2rem;
  margin-bottom: 1.5rem;
}

.footer-col h3 {
  color: var(--light-text);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #aaa;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--light-text);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-text {
    text-align: center;
    margin-bottom: 2rem;
    padding-right: 0;
  }

  .hero h2 {
    text-align: center;
  }

  .step {
    flex-basis: calc(50% - 1rem);
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .step {
    flex-basis: 100%;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
  }
}
