/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

/* Landing Page Layout */
.landing-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.header {
  background-color: #fff; /* Darker purple for better contrast */
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.logo-container {
  flex: 1;
}

.logo {
  max-width: 150px;
}

.navigation {
  flex: 1;
  text-align: right;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Button Variants */
.primary-btn {
  background-color: #9747ff;
  color: white;
}

.primary-btn:hover {
  background-color: #8439e6;
}

.secondary-btn {
  background-color: white;
  color: #9747ff;
  border: 1px solid #9747ff;
}

.secondary-btn:hover {
  background-color: #f3e8ff;
  color: #8439e6;
}

.large-btn {
  font-size: 18px;
  padding: 15px 30px;
}

/* Main Content */
.main-content {
  flex: 1;
  text-align: center;
  padding: 50px;
}

.main-content h1 {
  font-size: 36px;
  color: #9747ff;
  margin-bottom: 20px;
}

.main-content p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.cta-section {
  margin-top: 20px;
}

/* Footer */
.footer {
  background-color: #9747ff;
  color: white;
  text-align: center;
  padding: 10px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .navigation {
    text-align: center;
    margin-top: 10px;
  }

  .main-content {
    padding: 20px;
  }

  .main-content h1 {
    font-size: 28px;
  }

  .main-content p {
    font-size: 16px;
  }

  .large-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}
