.bg-color5 {
  background: var(--color5) !important;
}

.bg-color6 {
  background: var(--color6) !important;
}

.bg-color7 {
  background: var(--color7) !important;
}

.bg-color8 {
  background: var(--color8) !important;
}

.bg-color9 {
  background: var(--color9) !important;
}

.bg-color10 {
  background: var(--color10) !important;
}

.color5 {
  color: var(--color5) !important;
}

.color6 {
  color: var(--color6) !important;
}

.color7 {
  color: var(--color7) !important;
}

.color8 {
  color: var(--color8) !important;
}

.color9 {
  color: var(--color9) !important;
}

.color10 {
  color: var(--color10) !important;
}

.carousel-indicators {
  list-style: none;
}

a[class*='bg-color'],
button[class*='bg-color'] {
  transition: 0.3s;
}

a[class*='bg-color']:hover,
button[class*='bg-color']:hover {
  opacity: 0.8;
}

/* Modern Header Styles */
.navbar {
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  background: var(--color6);
  position: relative;
  z-index: 1000;
}

.navbar.scrolled {
  background: var(--color5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color5);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-collapse {
  flex-grow: 0;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.nav-link {
  color: var(--color5);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--color5);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background: transparent;
  margin-left: 1rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--color5);
  display: block;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color5);
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 1rem 0;
  }

  .navbar-brand {
    margin: 0;
  }

  .navbar-brand img {
    height: 35px;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 5rem 1rem 1rem;
    z-index: 1000;
    display: none;
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: center;
  }

  .navbar-nav .nav-link {
    padding: 1rem;
    text-align: center;
    border-radius: 0.5rem;
    width: 100%;
    font-size: 1.2rem;
  }

  .navbar-nav .nav-link:hover {
    background: var(--color5);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-toggler {
    position: fixed;
    top: 42px;
    right: 1rem;
    z-index: 1001;
    margin: 0;
  }
}

/* Hero Section Styles */
.hero-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--color5) 0%, var(--color6) 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.1;
  z-index: -1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color5);
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--color6);
}

.hero-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color5) 0%, var(--color6) 100%);
  color: var(--color6);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, var(--color6) 0%, var(--color5) 100%);
  color: var(--color6);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1.2rem;
  }

  .hero-button {
    padding: 1rem 2.5rem;
  }
}

/* About Section Styles */
.about-section {
  padding: 6rem 0;
  background: var(--color5);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color6) 0%, transparent 100%);
  opacity: 0.1;
}

.about-header {
  margin-bottom: 4rem;
}

.about-title {
  color: var(--color7);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text {
  color: var(--color9);
  font-size: 1.1rem;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  background: var(--color6);
  padding: 3rem;
  border-radius: 30px;
  position: relative;
}

.about-content-side {
  order: 1;
  width: 100%;
}

.about-image-side {
  order: 2;
  width: 100%;
}

.about-features {
  display: grid;
  gap: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color5);
  border-radius: 15px;
  transition: all 0.3s ease;
}

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

.about-feature-icon {
  font-size: 1.5rem;
  color: var(--color6);
}

.about-feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color6);
}

.about-feature-content p {
  color: var(--color9);
  margin: 0;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--color5) 0%, transparent 100%);
  opacity: 0.3;
}

.about-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color5) 0%, var(--color6) 100%);
  color: var(--color6);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
}

.about-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, var(--color6) 0%, var(--color5) 100%);
  color: var(--color6);
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-wrapper {
    padding: 2rem;
  }

  .about-content-side,
  .about-image-side {
    width: 100%;
  }

  .about-feature {
    padding: 1.2rem;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Features Section Styles */
.features-section {
  padding: 6rem 0;
  background: var(--color6);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color5) 0%, transparent 100%);
  opacity: 0.1;
}

.features-header {
  margin-bottom: 4rem;
}

.features-title {
  color: var(--color7);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.features-subtitle {
  color: var(--color5);
  font-size: 1.1rem;
}

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

.feature-card {
  background: var(--color5);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color5) 0%, transparent 100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color6);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color6);
}

.feature-text {
  color: var(--color6);
  margin-bottom: 1.5rem;
}

.feature-link {
  color: var(--color6);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color5) 0%, var(--color6) 100%);
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: var(--color6);
}

.features-cta {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}

.features-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color5) 0%, var(--color6) 100%);
  color: var(--color6);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
}

.features-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, var(--color6) 0%, var(--color5) 100%);
  color: var(--color6);
}

@media (max-width: 991.98px) {
  .about-section,
  .features-section {
    padding: 4rem 0;
  }

  .about-wrapper {
    padding: 2rem;
  }

  .about-content-side,
  .about-image-side {
    width: 100%;
  }

  .about-feature {
    padding: 1.2rem;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

/* Pricing Section Styles */
.pricing-section {
  padding: 6rem 0;
  background: var(--color5);
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color6) 0%, transparent 100%);
  opacity: 0.1;
}

.pricing-header {
  margin-bottom: 4rem;
}

.pricing-title {
  color: var(--color7);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-subtitle {
  color: var(--color9);
  font-size: 1.1rem;
}

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

.pricing-card {
  background: var(--color6);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color5) 0%, transparent 100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card:hover::before {
  opacity: 0.05;
}

.pricing-card.featured {
  position: relative;
  border: 2px solid var(--color5);
  z-index: 2;
}

.pricing-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color5) 0%, transparent 100%);
  opacity: 0.1;
  z-index: -1;
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color5);
  color: var(--color6);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 3;
}

.pricing-image {
  height: 200px;
  overflow: hidden;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-card-content {
  padding: 2rem;
}

.pricing-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color5);
}

.pricing-card-text {
  color: var(--color5);
  margin-bottom: 1.5rem;
}

.pricing-card-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color5);
  margin-bottom: 1.5rem;
}

.pricing-card-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color5) 0%, var(--color6) 100%);
  color: var(--color6);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
}

.pricing-card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, var(--color6) 0%, var(--color5) 100%);
  color: var(--color6);
}

@media (max-width: 991.98px) {
  .about-section,
  .features-section,
  .pricing-section {
    padding: 4rem 0;
  }

  .about-wrapper {
    padding: 2rem;
  }

  .about-content-side,
  .about-image-side {
    width: 100%;
  }

  .about-feature {
    padding: 1.2rem;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid {
    gap: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .pricing-card {
    max-width: 100%;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 6rem 0;
  background: var(--color6);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color5) 0%, transparent 100%);
  opacity: 0.1;
}

.contact-header {
  margin-bottom: 4rem;
}

.contact-title {
  color: var(--color7);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-subtitle {
  color: var(--color5);
  font-size: 1.1rem;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background: var(--color5);
  padding: 3rem;
  border-radius: 30px;
  position: relative;
}

.contact-info-side {
  order: 1;
  width: 100%;
  padding: 2rem;
  background: var(--color6);
  border-radius: 20px;
}

.contact-info-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color5);
}

.contact-info-text {
  color: var(--color5);
  margin-bottom: 2rem;
}

.contact-info-cards {
  display: grid;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--color5);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(5px);
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--color6);
}

.contact-info-details h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--color6);
}

.contact-info-details p {
  color: var(--color9);
  margin: 0;
}

.contact-form-side {
  order: 2;
  width: 100%;
  padding: 2rem;
  background: var(--color6);
  border-radius: 20px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  left: 1rem;
  top: calc(1rem + 6px);
  color: var(--color6);
  z-index: 1;
}

.form-control {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid var(--color6);
  border-radius: 10px;
  background: var(--color5);
  color: var(--color6);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  border-color: var(--color5);
  outline: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--color6);

  background: var(--color5);
  z-index: 0 !important;
}

.form-control::placeholder {
  color: var(--color6);
  opacity: 0.7;
}

textarea.form-control {
  padding-top: 1rem;
  min-height: 150px;
  resize: vertical;
}

.form-check {
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
  border-color: var(--color6);
  background-color: var(--color5);
}

.form-check-input:checked {
  background-color: var(--color5);
  border-color: var(--color5);
}

.form-check-label {
  color: var(--color5);
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color5) 0%, var(--color6) 100%);
  color: var(--color6);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, var(--color6) 0%, var(--color5) 100%);
  color: var(--color6);
}

@media (max-width: 991.98px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-wrapper {
    padding: 2rem;
  }

  .contact-info-side,
  .contact-form-side {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-cards {
    gap: 1rem;
  }

  .contact-info-card {
    padding: 0.8rem;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
  }
}

/* Footer */
.footer {
  background: var(--color5);
  padding: 4rem 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color6) 0%, transparent 100%);
  opacity: 0.1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  position: relative;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-logo {
  height: 100px;
  border-radius: 10px;
  width: auto;
}

.footer-description {
  color: var(--color6);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
}

.footer-link {
  color: var(--color6);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--color6);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color6);
  color: var(--color5);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color5);
  color: var(--color6);
  transform: translateY(-3px);
}

.footer-copyright {
  color: var(--color6);
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color6);
  position: relative;
}

@media (max-width: 991px) {
  .about-wrapper,
  .contact-wrapper {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Navbar brand */
.navbar-brand {
  display: inline-block;
  border: 2px solid var(--color5);
  padding: 2px 12px 2px 2px;
  border-radius: 10px 50% 50% 10px;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 65px;
  border-radius: 10px;
  width: auto;
  object-fit: contain;
}

/* Common Button Styles */
.hero-button,
.about-button,
.feature-link,
.features-button,
.pricing-card-button,
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color5) 0%, var(--color6) 100%);
  color: var(--color6);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
}

.hero-button:hover,
.about-button:hover,
.feature-link:hover,
.features-button:hover,
.pricing-card-button:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, var(--color6) 0%, var(--color5) 100%);
  color: var(--color6);
}

/* Remove individual button styles */
.hero-button,
.about-button,
.feature-link,
.features-button,
.pricing-card-button {
  /* Remove individual styles */
}

.container {
  z-index: 1;
  position: relative;
}
