:root {
  --primary: #00e6b8;
  --primary-dark: #00b894;
  --secondary: #0984e3;
  --dark: #2d3436;
  --light: #f5f6fa;
  --accent: #6c5ce7;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --bg-dark: #0a192f;
  --bg-darker: #071120;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
  color: var(--light);
  line-height: 1.5;
  overflow-x: hidden;
}

.quote-section {
  text-align: center;
}

.quote-text {
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
  quotes: "“" "”" "‘" "’";
  background: #00c0a1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quote-text::before {
  content: open-quote;
}

.quote-text::after {
  content: close-quote;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 9%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 230, 184, 0.2);
}

.navbar.scrolled {
  padding: 1rem 5%;
  background: rgba(10, 25, 47, 0.98);
}

.logo img {
  height: 78px;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item a {
  position: relative;
  transition: all 0.5s ease;
  color: var(--bg-darker);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-item a::after {
  content: '';
  transition: width 0.5s ease-in-out;
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--primary);
}

.nav-item a:hover::after {
  width: 100%;
}

.nav-item-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  color: red;
  border-radius: 2px;
  text-decoration: none !important;
}

.nav-item-active a{
  color: var(--primary-dark);
  text-decoration: none !important;
  font-weight: 500;
}

.login-button {
  background: var(--gradient);
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.login-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.login-button:hover::before {
  left: 100%;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 230, 184, 0.5);
}

.login-button a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bg-darker);
  font-size: 1.5rem;
  cursor: pointer;
}

.healthcare-message {
  padding: 8rem 10% 3rem 10%;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.text-container-h2 {
  text-align: center;
  font-size: 2.5rem;
  margin: 1rem 0;
  color: #00c0a1;
  font-weight: 700;
}

.text-container p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  line-height: 1.8rem;
}

.text-container-impart{
  color: #7fd0ff !important;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  color: var(--light);
}

.learn-more-btn i {
  transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
  transform: translateX(10px);
  
}

.interoperability-section {
  padding: 5rem 5%;
  background: var(--bg-darker);
  position: relative;
}

.section-header {
  margin-bottom: 5rem;
}

.section-header h2{
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: #00c0a1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-align: left;
}

.main-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: #00c0a1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-align: left;
}

.section-header p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto;
}

.interoperability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.interoperability-content {
  position: relative;
  z-index: 2;
}

.interoperability-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

.interoperability-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.interoperability-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.interoperability-image:hover img {
  transform: scale(1.05);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
}

.footer-social a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #00aced; 
}


.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}


.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.link-group h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.link-group a {
  display: block;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-group a:hover {
  color: var(--primary);
}

.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.footer-contact p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-icons a {
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 10%
}

.footer-partners img {
  zoom: 1.2;
  width: 150px;
  opacity: 0.7;
}

.footer-legal {
  text-align: right;
}

.footer-legal p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.legal-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--primary);
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-slide-up {
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}

.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

.animate-zoom {
  opacity: 0;
  animation: zoomIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.healthcare-message .grid-container {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.image-container {
  overflow: hidden;
}

.image-container img {
  transition: transform 0.8s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-container:hover .image-overlay {
  opacity: 0.3;
}

.interoperability-grid {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.6s forwards;
}

.interoperability-image img {
  transition: transform 0.8s ease;
}

.interoperability-image:hover img {
  transform: scale(1.05);
}

.nav-item.dropdown {
    position: relative;
    --primary: #00e6b8;
    --primary-dark: #00c9a3;
    --light: #f5f6fa;
    --dark: #0a192f;
}

.dropdown-trigger {
  padding: 0%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-chevron {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 12px;
    padding: 8px;
    min-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(0, 230, 184, 0.1), 
                transparent);
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: rgba(0, 230, 184, 0.08);
    transform: translateX(4px);
}

.dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 230, 184, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.navbar.scrolled .dropdown-menu {
    background: rgba(10, 25, 47, 0.95);
    border: 1px solid rgba(0, 230, 184, 0.15);
}

.navbar.scrolled .dropdown-item {
    color: var(--light);
}

.navbar.scrolled .dropdown-icon {
    background: rgba(0, 230, 184, 0.15);
}

.navbar.scrolled .dropdown-item:hover {
    background: rgba(0, 230, 184, 0.12);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-item.dropdown .dropdown-icon {
    background: rgba(100, 181, 246, 0.1);
}

.nav-item.dropdown .dropdown-item:hover {
    background: rgba(100, 181, 246, 0.08);
}

.nav-item.dropdown .dropdown-item::before {
    background: linear-gradient(90deg, 
                transparent, 
                rgba(100, 181, 246, 0.1), 
                transparent);
}

.navbar.scrolled .nav-item.dropdown .dropdown-icon {
    background: rgba(100, 181, 246, 0.15);
}

.navbar.scrolled .nav-item.dropdown .dropdown-item:hover {
    background: rgba(100, 181, 246, 0.12);
}

.roi-section {
  padding: 4rem 10%;
  background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
  position: relative;
}

.section-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.roi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.roi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,230,184,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.roi-card:hover::before {
  opacity: 1;
}

.roi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 230, 184, 0.2);
}

.roi-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.roi-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.roi-card ul {
  list-style: none;
}

.roi-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.roi-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0, 230, 184, 0.1) 0%, transparent 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
  padding: 1.5rem 10rem 1.5rem 2.5rem;
  position: relative;
  color: white;
  opacity: 0.9;
}

.card::before {
  content: attr(data-bgtext);
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: rgba(255,255,255,0.25);
  z-index: 0;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
    transition: opacity 5s ease;

}

.card:hover {
  transform: translateY(-5px);
  transition: opacity 5s ease;
  box-shadow: 0 15px 30px rgba(0, 230, 184, 0.2);
}


.row {
  position: relative;
  z-index: 1;
}

.description {
  margin-top: 2rem;
}

.description h4 {
  color: #7fd0ff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.description ul {
  padding-left: 1.2rem;
  list-style: none;
}

.description li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.description li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary, #00e6b8);
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.benefits-section {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}


.benefits-section h1 {
  font-size: 1.7rem;
  color: #d0d0d0;
  line-height: 1.7;
  font-weight: 600;
}

.quote-text a {
  text-decoration: none;
  font-weight: 500;
  -webkit-text-fill-color: #99c3ff;
}
.quote-text a:hover {
  text-decoration: none;
  -webkit-text-fill-color: #ba79f3;
}

@media (min-width: 1921px) {
  html {
    font-size: 18px; 
  }

  .section-container{
    max-width: 1813px;
  }

  .logo img {
    height: 90px;
  }

  .text-container-h2,
  .section-header h2,
  .benefits-section h1,
  .description h4,
  .quote-text {
    font-size: 2rem;
  }

  .nav-menu {
    gap: 2.5rem;
  }

  .nav-item a {
    font-size: 1rem;
  }

  .description ul {
    padding-left: 1.5rem;
  }

  .description li,
  .section-subtitle,
  .text-container p,
  .learn-more-btn,
  .roi-card li,
  .interoperability-content p {
    font-size: 1.1rem !important;
    line-height: 1.8;
  }

  .roi-card h3 {
    font-size: 1.8rem;
  }

  .roi-icon {
    font-size: 3rem;
  }

  .footer-content {
    max-width: fit-content;
    gap: 5rem;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .footer-legal p {
    font-size: 1rem;
  }

  .legal-links a {
    font-size: 0.9rem;
  }

  .dropdown-menu {
    min-width: 500px;
  }

  .dropdown-title {
    font-size: 1rem;
  }
}

@media (max-width: 1440px) {
  .navbar {
    padding: 0.8rem 6%;
  }

  .logo img {
    height: 60px;
  }

  .nav-item a {
    font-size: 0.9rem;
  }

  .login-button {
    padding: 0.5rem 1.2rem;
  }

  .healthcare-message {
    padding: 7rem 10% 2.5rem 10%;
  }

  .text-container-h2,.section-header h2  {
    font-size: 2.2rem;
  }

  .text-container p, .section-subtitle {
    font-size: 1.05rem;
  }

  .footer-content {
    gap: 2.5rem;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .footer-legal {
    text-align: left;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .roi-section {
    padding: 7rem 8% 2.5rem 8%;
  }

  .benefits-section h1 {
    font-size: 1.6rem;
  }

  .quote-section{
    padding-top: 1rem;
  }

  .quote-text{
    font-size: 1.4rem;
  }
}
 
@media (max-width: 1024px) {
  .navbar {
    padding: 0.5rem 5%;
  }

  .nav-menu {
    gap: 1.2rem;
  }

  .nav-item a, .nav-item-active, .login-button {
    font-size: 0.7rem;
  }

  .logo img {
    height: 55px;
  }

  .text-container-h2 {
    font-size: 2rem;
  }

  .text-container p,
  .interoperability-content p {
    font-size: 1rem;
  }

  .section-header h2,
  .main-section h1 {
    font-size: 2rem;
  }

  .footer-content,
  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .footer-logo img {
    height: 32px;
  }

  .footer-contact h4,
  .link-group h4 {
    font-size: 1rem;
  }

  .footer-contact p,
  .link-group a,
  .footer-legal p,
  .legal-links a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: row;
    text-align: center;
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .footer-legal {
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .quote-text {
    font-size: 1.3rem;
  }

  .text-container h2 {
    font-size: 1.8rem;
  }

  .learn-more-btn {
    font-size: 0.95rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .grid-container {
    display: block;
    align-items: center;
  }

  .image-container {
    transform: scale(0.7);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .roi-section {
    padding: 0rem 10% 2.5rem 10%;
  }

  .healthcare-message {
    padding: 7rem 10% 1rem 10%;
  }
} 


@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 5%;
    flex-wrap: wrap;
  }

  .logo img {
    height: 55px;
  }

  .nav-menu {
    gap: 1.2rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item a,
  .nav-item-active,
  .login-button {
    font-size: 0.75rem;
  }

  .menu-toggle {
    display: block;
  }

  .healthcare-message {
    padding: 6rem 10% 0rem 10%;
  }

  .text-container-h2,.section-header h2,
  .main-section h1 {
    font-size: 1.8rem;
  }

  .text-container-h2 {
    margin-bottom: 0rem;
  }

  .text-container p,
  .interoperability-content p,
  .text-container p, .section-subtitle {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .learn-more-btn {
    font-size: 0.95rem;
  }

  .section-header p {
    font-size: 1rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin: 0 5%;
    text-align: center;
  }

  .footer-legal {
    text-align: center;
  }

  .legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .card {
    padding: 1.5rem 2rem;
  }

  .roi-section {
    padding: 1rem 10% 2rem 10%;
  }

  .dropdown-menu {
    min-width: 280px;
    top: 100%;
    left: -4.5rem;
  }

  .dropdown-item {
    padding: 10px 14px;
  }

  .dropdown-title {
    font-size: 0.7rem;
  }

  .dropdown-icon{
    height: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    padding: 0 5%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    margin-bottom: 1rem;
  }

  .benefits-section h1 {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .quote-text {
    font-size: 1.3rem;
  }

  .description h4 {
    font-size: 1.3rem;
  }

  .description li {
    font-size: 0.95rem;
  }

  .site-footer {
    padding: 0rem 0 1rem 0;
  } 
}

@media (max-width: 426px) {
  .navbar {
    padding: 0.5rem 3% 0.5rem 5%;
    flex-wrap: wrap;
  }
  
  .text-container-h2, .section-header h2, .main-section h1 {
    font-size: 1.5rem;
  }

  .text-container p, .interoperability-content p, .text-container p, .section-subtitle {
    font-size: 0.94rem;
  }

  .image-container{
    transform: scale(1);
    margin: 1rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }
  
  .description {
    margin-top: 1rem;
  }

  .description ul{
    padding-left: 0%;
  }

  .footer-bottom {
    display: block;
  }

  .footer-legal {
    padding: 1rem 0 0 0;
    text-align: center;
  }
  
  .benefits-section h1, .quote-text {
    font-size: 1.08rem;
    line-height: 1.5;
  }
}

@media (max-width: 376px) {
  .solution{
    left: -5.5rem !important;
  }
}

@media (max-width: 320px){
  .text-container-h2, .section-header h2, .main-section h1 {
    font-size: 1.3rem;
  }

  .description h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
  }

  .text-container p, .interoperability-content p, .text-container p, .section-subtitle, .learn-more-btn, .description li  {
    font-size: 0.84rem;
  }

  .description li{
    padding-left: 1.5rem;
  }

  .section-header h2{
    margin-bottom: 0rem;
  }

  .benefits-section{
    margin-top: -14px;
  }

  .quote-section {
    padding-top: 0rem;
  }

  .roi-section {
    padding: 1rem 10% 1rem 10%;
  }

  .footer-contact p, .link-group a, .footer-legal p, .legal-links a {
    font-size: 0.75rem;
  }

  .solution {
    left: -5.5rem !important;
  }

  .dropdown-menu{
    left: -4.5rem;
  }

  .footer-social a{
    font-size: 1.3rem;
  }
}