:root {
  /* Color Palette */
  --primary-1: #3f7cc0; /* Blue */
  --primary-1-light: #5a92d1;
  --primary-1-dark: #2c5f9a;
  
  --primary-2: #87be4b; /* Green */
  --primary-2-light: #9fce6a;
  --primary-2-dark: #6a9e35;
  
  --primary-3: #f8a13f; /* Orange */
  --primary-3-light: #fbb566;
  --primary-3-dark: #e88a21;
  
  --primary-4: #734f96; /* Purple */
  --primary-4-light: #8c6aac;
  --primary-4-dark: #5c3c7a;
  
  --primary-5: #e15757; /* Red */
  --primary-5-light: #e77e7e;
  --primary-5-dark: #cc3c3c;
  
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #e9ecef;
}

/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-1);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-description {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
header {
  padding: 1rem 0;
  background-color: var(--light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-1);
}

.nav-link {
  font-weight: 500;
  color: var(--dark);
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--light);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary-1-light);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
  opacity: 0.3;
}

.hero-blob {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  z-index: 1;
  opacity: 0.2;
}

/* About Section */
.about {
  background-color: var(--light);
}

.about-feature {
  padding: 2rem;
  transition: transform 0.3s;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
}

.about-feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-1);
}

/* Services Section */
.services {
  background-color: var(--light-gray);
}

.service-card {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-2);
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 0.5rem 0;
}

.service-features li::before {
  content: "✓";
  color: var(--primary-2);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Features Section */
.features {
  background-color: var(--light);
}

.feature-card {
  padding: 2rem;
  height: 100%;
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-3);
}

/* Price Plan Section */
.price-plan {
  background-color: var(--light-gray);
}

.pricing-card {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-4);
  margin: 1rem 0;
}

.pricing-features {
  list-style: none;
  padding-left: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team {
  background-color: var(--light);
}

.team-member {
  margin-bottom: 2rem;
}

.team-member-img {
  border-radius: 50%;
  margin-bottom: 1rem;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid var(--light-gray);
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-1);
  font-weight: 500;
}

/* Review Section */
.reviews {
  background-color: var(--light-gray);
}

.review-card {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-author {
  font-weight: 700;
  margin-top: 1rem;
}

/* Core Info Section */
.core-info {
  background-color: var(--light);
}

.core-info-item {
  padding: 2rem;
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.core-info-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-5);
}

/* Contact Section */
.contact {
  background-color: var(--light-gray);
}

.contact-form {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-control {
  margin-bottom: 1.5rem;
}

.form-check {
  margin-bottom: 1.5rem;
}

/* Blog Section */
.blog {
  background-color: var(--light);
}

.blog-card {
  background-color: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-img {
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
  background-color: var(--light-gray);
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: none;
}

.accordion-button {
  font-weight: 700;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1-light);
  color: var(--light);
}

/* Gallery Section */
.gallery {
  background-color: var(--light);
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 4rem 0 2rem;
}

footer h5 {
  color: var(--primary-2-light);
  margin-bottom: 1.5rem;
}

footer p {
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-2-light);
}

#site-copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: var(--gray);
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(63, 124, 192, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

/* Decorative elements */
.shape-blob {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
} 