.menu-items a, .menu-items span {
    font-size: 1.1em!important;
    transition: color 0.2s ease, transform 0.2s ease;
    position: relative;
}

.menu-items a:hover {
    transform: translateY(-2px);
}
#services-button {
    font-size: 1.1em!important;
}
.menu-items button {
    font-size: 1.1em!important;
}
/* .menu-items a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #ea580c;
    transition: width 0.3s ease;
}
 */
 .menu-items {
  text-align: center!important;
 }
.menu-items a:hover::after {
    width: 80%;
}

#menu-item-left {
    font-size: 1.25em!important;
    
}


/* Fizyonops custom styles */

/* Prose styles for markdown content */
.prose {
  max-width: 65ch;
  color: #374151;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}
.text-black-600 {
    color: #000000!important;
}
.tech-item {
 box-shadow: none!important;
}
.prose-fizyonops a {
  color: #ea580c;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
  text-underline-offset: 2px;
}

.prose-fizyonops a:hover {
  color: #c2410c;
  text-decoration-thickness: 2px;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
  color: #111827;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  line-height: 1.3;
}

.prose h1 {
  font-size: 2.25em;
  line-height: 1.2;
}

.prose h2 {
  font-size: 1.5em;
  line-height: 1.3;
}

.prose ul, .prose ol {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}

.prose li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  position: relative;
}

.prose strong {
  font-weight: 600;
  color: #111827;
}

/* Image hover effects */
img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Custom price cards */
.price-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.price-card:hover {
  border-color: #ea580c;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.price-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.price-card-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.price-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ea580c;
  margin-top: 1rem;
}

/* Service feature lists */
.feature-list {
  list-style-type: none;
  padding: 0;
  margin: 1rem 0;
}

.feature-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
  transition: transform 0.2s ease;
}

.feature-list li:hover {
  transform: translateX(5px);
}

.feature-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ea580c;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.feature-list li:hover:before {
  transform: translateX(2px);
}

/* Footer link effects */
footer a {
  transition: color 0.2s ease;
  position: relative;
}

footer a:hover {
  transform: translateX(2px);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Testimonial cards styling */
.testimonial-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 120px;
  font-family: 'Georgia', serif;
  color: rgba(234, 88, 12, 0.07);
  z-index: 0;
  line-height: 1;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}