:root {
    --primary-color: #4b6cb7;       /* Глибокий індиго-синій */
    --secondary-color: #182848;     /* Темний синьо-фіолетовий */
    --accent-color: #00c9a7;        /* Бірюзово-неоновий акцент */
    --text-dark: #1f2937;           /* Насичений графіт */
    --text-light: #ffffff;
    --background-light: #f8fafc;    /* Дуже світлий відтінок синього */
  }
  
  body {
    font-family: 'Helvetica', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 56px;
    background-color: var(--background-light);
  }
  
  /* Navbar */
  .navbar {
    background-color: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  section {
    scroll-margin-top: 56px;
    padding: 6rem 0;
  }
  
  /* Cards */
  .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(27, 38, 49, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(27, 38, 49, 0.15);
  }
  
  .card-body {
    padding: 2rem;
  }
  
  /* Team Images */
  img.rounded-circle {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 4px solid var(--accent-color);
  }
  
  /* Animated Icons */
  .feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .feature-icon:hover {
    transform: scale(1.1);
    color: var(--accent-color);
  }
  
  /* Section Headings */
  section h2 {
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    margin-bottom: 3rem;
  }
  
  section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  }
  
  /* Pricing Cards */
  .pricing-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }
  
  /* Contact Section */
  #contact {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    color: var(--text-light);
  }
  
  /* About Section */
  .about-section {
    position: relative;
    overflow: hidden;
  }
  
  /* Feature Items */
  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    opacity: 1;
    transform: translateX(10px);
  }
  
  .feature-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--accent-color);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    section {
      padding: 3rem 0;
    }
  }
  