:root {
  /* Primary Colors - Pastel Palette */
  --primary-1: #F7CAC9; /* Soft Pink */
  --primary-2-dark: #B5EAD7; /* Mint Green */
  --primary-2-dark: #FFE5B4; /* Peach */
  --primary-4: #C7CEEA; /* Lavender */
  --primary-5: #E2F0CB; /* Light Green */
  
  /* Shades */
  --primary-1-light: #FADED9;
  --primary-1-dark: #E5B8B7;
  --primary-2-dark-light: #D7F5E8;
  --primary-2-dark-dark: #93C9B5;
  --primary-2-dark-light: #FFF0D4;
  --primary-2-dark-dark: #EAD0A0;
  --primary-4-light: #DEE5FA;
  --primary-4-dark: #A6AFCB;
  --primary-5-light: #F0FADE;
  --primary-5-dark: #C4D2AE;
  
  /* Neutrals */
  --dark: #3E4C59;
  --medium: #8795A1;
  --light: #F1F5F8;
  --white: #FFFFFF;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark);
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Utility Classes */
.bg-primary-1 { background-color: var(--primary-1); }
.bg-primary-2 { background-color: var(--primary-2-dark); }
.bg-primary-3 { background-color: var(--primary-2-dark); }
.bg-primary-4 { background-color: var(--primary-4); }
.bg-primary-5 { background-color: var(--primary-5); }

.text-primary-1 { color: var(--primary-1); }
.text-primary-2 { color: var(--primary-2-dark); }
.text-primary-3 { color: var(--primary-2-dark); }
.text-primary-4 { color: var(--primary-4); }
.text-primary-5 { color: var(--primary-5); }

.section-padding {
  padding: 6rem 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--primary-2-dark);
  transform: translateX(-50%);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
  color: var(--dark);
}

.btn-primary:hover {
  background-color: var(--primary-2-dark-dark);
  border-color: var(--primary-2-dark-dark);
  color: var(--dark);
}

.btn-secondary {
  background-color: var(--primary-4);
  border-color: var(--primary-4);
  color: var(--dark);
}

.btn-secondary:hover {
  background-color: var(--primary-4-dark);
  border-color: var(--primary-4-dark);
  color: var(--dark);
}

/* Header */
.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1rem;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-2-dark);
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-feature {
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.about-feature h4 {
  margin-bottom: 1rem;
}

/* Services Section */
.services-item {
  padding: 2.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  background-color: var(--white);
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}

.services-item h4 {
  margin-bottom: 1rem;
}

.services-item .price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-2-dark-dark);
  margin-bottom: 1rem;
}

.services-item ul {
  padding-left: 1.2rem;
}

.services-item ul li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features-item {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.features-item i {
  font-size: 3.5rem;
  color: var(--primary-4);
  margin-bottom: 1.5rem;
}

.features-item h4 {
  margin-bottom: 1rem;
}

/* Price Plan Section */
.price-plan {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.price-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-plan .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-2-dark-dark);
  margin-bottom: 1.5rem;
}

.price-plan h4 {
  margin-bottom: 1.5rem;
}

.price-plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-plan ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--primary-1-light);
}

.team-member h4 {
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--medium);
}

/* Reviews Section */
.review-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}

.review-item p {
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}

.review-item p::before,
.review-item p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-1);
  position: absolute;
}

.review-item p::before {
  left: -10px;
  top: -10px;
}

.review-item p::after {
  right: -10px;
  bottom: -20px;
}

.review-author {
  font-weight: 700;
  margin-top: 1.5rem;
  text-align: right;
}

/* Core Info Section */
.core-info-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.core-info-item i {
  font-size: 3rem;
  color: var(--primary-5);
  margin-bottom: 1.5rem;
}

.core-info-item h4 {
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-form {
  background-color: var(--white);
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.8rem 1rem;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-2-dark);
}

.contact-info {
  background-color: var(--primary-4-light);
  padding: 3rem;
  border-radius: 10px;
  height: 100%;
}

.contact-info h4 {
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--primary-4);
}

/* Blog Section */
.blog-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-content h4 {
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 4rem 0 1rem;
}

footer h4 {
  color: var(--white);
  margin-bottom: 2rem;
}

footer p, footer a {
  color: var(--light);
}

footer a:hover {
  color: var(--primary-2-dark);
  text-decoration: none;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

footer .footer-bottom small {
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Decorative Elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.shape-divider .shape-fill {
  fill: var(--white);
}

/* Additional Page Styles */
.page-header {
  padding: 10rem 0 6rem;
  background-color: var(--primary-4-light);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
} 