/* Landing Page Customization */ 

/* Define the theme's primary color */ 
:root {
  --primary-color: #ff3b6b;   /* medium pink */
  --primary-light: #ff6a8a;   /* lighter pink */
  --primary-dark: #ff1f5a;    /* darker pink */
}

/* Style the main header section */ 
#ad-header {
  background: linear-gradient(to right, var(--primary-light), var(--primary-color));
  border-bottom: 2px solid var(--primary-dark);
}

/* Change the background of the features section */ 
#ad-about-wrapper {
  background-color: #fff0f4 !important; /* very light pink */
}

/* Customize the call-to-action button */ 
.ad-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
}

/* Button hover effect */
.ad-btn:hover {
  background-color: var(--primary-dark);
}