* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
body {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  flex-wrap: wrap;
}

/* Logo Styles */
.logo {
  font-size: 1.5rem;
  color: #1b1af6;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  /* Aligns logo image and text */
  gap: 0.5rem;
  /* Adds space between image and text */
  transition: opacity 0.3s ease;
}

.logo-img {
  height: auto;
  width: 50px;
  /* Set the size of the logo image */
}



.nav-middle {
  display: flex;
  gap: 2rem;
}

.nav-middle a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
  font-weight: bold;
}

.nav-middle a:hover {
  color: #1b1af6;
}

.nav-middle a:active {
  color: #5a3754;
}

.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.sign-in {
  color: #4c4c4c;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.try-free {
  background-color: #1b1af6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.try-free:hover {
  background-color: #734c68;
}

/* Mobile Navigation Styles */
.menu-icon {
  display: none;
  color: #1b1af6;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}

.menu-icon:hover {
  background-color: rgba(27, 26, 246, 0.1);
}

/* Add these CSS styles to your existing styles.css file */

/* Dropdown Container Styling */
.dropdown-container {
  position: relative;
  display: inline-block;
}

/* Create padding space between dropdown button and content for better UX */
.dropdown-container .dropdown::after {
  content: '';
  position: absolute;
  height: 20px;
  width: 100%;
  bottom: -20px;
  left: 0;
  z-index: 1000;
}

/* Show dropdown on hover for desktop */
.dropdown-container:hover .crm-dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* CRM Dropdown Menu Styling - improved for better hover behavior */
.crm-dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  border-radius: 5px;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
  transform: translateY(-10px);
  pointer-events: none;
}

/* Also show dropdown when the dropdown content itself is hovered */
.crm-dropdown-content:hover {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.crm-dropdown-content a {
  color: #4c4c4c;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.crm-dropdown-content a:last-child {
  border-bottom: none;
}

.crm-dropdown-content a:hover {
  background-color: #f8f9fa;
  color: #1b1af6;
}

/* New styles for recurring label */
.partner-link-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recurring-label {
  background-color: #00b144;
  color: white;
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 12px;
  position: absolute;
  top: -18px;
  white-space: nowrap;
  font-weight: bold;
}

/* Mobile responsive adjustments for the dropdown */
@media screen and (max-width: 768px) {
  .dropdown-container {
    width: 100%;
  }

  /* For mobile, we disable the hover functionality */
  .dropdown-container:hover .crm-dropdown-content {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  /* Toggle class for mobile - overrides hover behavior */
  .crm-dropdown-content.show {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
    max-height: 200px !important;
  }

  .dropdown-container .dropdown::after {
    display: none;
    /* Remove hover padding for mobile */
  }

  .crm-dropdown-content {
    position: relative;
    width: 100%;
    box-shadow: none;
    margin-top: 0.5rem;
    background-color: #f8f9fa;
    /* Make sure mobile dropdown starts hidden but CAN be shown */
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .crm-dropdown-content a {
    padding-left: 2rem;
    border-bottom: 1px solid #e0e0e0;
  }

  .partner-link-container {
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .menu-icon {
    display: block;
  }

  .nav-middle,
  .nav-right {
    width: 100%;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: height 0.3s ease;
    gap: 0;
  }

  .nav-middle.show,
  .nav-right.show {
    height: auto;
    margin-top: 1rem;
  }

  .nav-middle a,
  .nav-right a {
    width: 100%;
    padding: 0.8rem 0;
    border-top: 1px solid #f0f0f0;
  }

  .nav-right {
    margin-top: 0;
  }

  .try-free {
    display: inline-block;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .logo {
    font-size: 1.3rem;
    /* Adjust the font size for smaller screens */
  }

  .logo-img {
    width: 40px;
    /* Adjust image size for mobile */
  }

}

.sign-in {
  color: #4c4c4c;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.try-free {
  background-color: #1b1af6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.try-free:hover {
  background-color: #1b1af6;
}


/* Hero Section Styles */
.hero {
  padding: 8rem 2rem 4rem;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.hero-lottie {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  max-height: 1000px;
  /* Further increased max height */
  width: 100%;
  position: relative;
  transform: scale(1.7);
  /* Further increased scaling */
}

#animation-container {
  width: 100%;
  height: 100%;
  max-width: 1600px;
  /* Further increased max width */
  max-height: 1200px;
  /* Further increased max height */
  overflow: hidden;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.smiley {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.smiley img {
  width: 70px;
  height: 70px;
  vertical-align: middle;
}

.hero-description {
  font-size: 1.2rem;
  color: #4c4c4c;
  margin: 0 auto 2rem auto;
  line-height: 1.5;
}

/* Call to Action Section */
.cta-section {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.start-now {
  background-color: #1b1af6;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.start-now:hover {
  background-color: #0f0edf;
  /* Slightly darker shade for hover effect */
}


.forever-free {
  color: #4c4c4c;
  font-size: 1.0rem;
}

.see-why {
  color: #00A09D;
  text-decoration: none;
  margin-left: 0.5rem;
  transition: opacity 0.3s ease;
}

/* Responsive Design - consolidated media queries */
@media (max-width: 768px) {
  .hero {
    padding-top: 10rem;
  }

  .hero-lottie {
    max-height: 300px;
  }

  #animation-container {
    max-width: 100%;
    max-height: 300px;
  }

  .hero-container {
    flex-direction: column;
    width: 100%;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
    margin: 0 auto 2rem auto;
  }

  .cta-section {
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
  }
}

.footer {
  background-color: #091431;
  color: white;
  padding: 3rem 10%;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-left,
.footer-center,
.footer-right {
  width: 30%;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 36px;
  margin-right: 10px;
  /* Space between logo and text */
}

.footer-logo-text {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.footer-message {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: #1e2c4f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  text-decoration: none;
}

.footer-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #4d84ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #a0a0a0;
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      align-items: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
      width: 100%;
      text-align: center;
  }

  .footer-logo {
      justify-content: center;
      margin-bottom: 2rem;
  }

  .footer-logo img {
      margin-right: 0;
      margin-bottom: 0.5rem;
  }

  .footer-message {
      font-size: 13px;
      margin-bottom: 2rem;
  }

  .footer-heading {
      font-size: 16px;
  }

  .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-top: 2rem;
  }

  .copyright,
  .contact {
      margin-bottom: 1rem;
  }
}



/* Styles for the comparison table */
.comparison-section {
  padding: 60px 0;
  background-color: #c8c8ff7b;
  width: 100%;
}

.comparison-title {
  text-align: center;
  color: #000000;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 0 20px;
}

.comparison-container {
  background-color: white;
  border-radius: 15px;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

/* Desktop View */
@media screen and (min-width: 992px) {
  .comparison-container {
    overflow: hidden;
    /* Hide scrollbar on desktop */
  }

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
  }
}

/* Mobile View */
@media screen and (max-width: 991px) {
  .comparison-container {
    overflow-x: auto;
    /* Enable horizontal scrolling on mobile */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
  }

  .comparison-table {
    width: 100%;
    min-width: 900px;
    /* Ensure table doesn't shrink too much */
    border-collapse: collapse;
  }

  /* Add subtle scroll indicator for mobile users */
  .comparison-container:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.7));
    pointer-events: none;
    z-index: 1;
  }
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: center;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: none;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table th {
  background-color: #f8f9fa;
  font-weight: bold;
}

.feature-cell {
  text-align: left;
  font-weight: 500;
}

/* Only make feature column sticky on mobile */
@media screen and (max-width: 991px) {
  .feature-cell {
    position: sticky;
    left: 0;
    background-color: #fff;
    z-index: 2;
  }

  th.feature-cell {
    background-color: #f8f9fa;
    z-index: 3;
  }
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.currency {
  font-size: 14px;
  color: #666;
}

.amount {
  font-weight: bold;
  font-size: 18px;
}

.check {
  color: white;
  background-color: #00a651;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 0 auto;
}

.cross {
  color: white;
  background-color: #e63946;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 0 auto;
}

/* three card container  */

.threecard-container {
  background-color: white;
  padding: 40px 0;
  text-align: center;
}

.threecard-container-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}

.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 50px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.feature-card {
  background: #afafff;
  color: white;
  width: 300px;
  height: 230px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.feature-card img {
  width: 40%;
  height: auto;
  object-fit: contain;
}

.feature-content {
  text-align: center;
  padding: 0 10px;
}

.feature-content p {
  margin: 5px 0;
  font-size: 18px;
  line-height: 1.5;
}

.feature-title {
  font-weight: bold;
  color: #333;
  font-size: 16px;
}

.feature-link {
  color: #0ca963;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
  .threecard-container-title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .features-container {
    padding: 0 15px;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .feature {
    width: 110px;
    flex-shrink: 0;
    margin: 0 auto;
  }

  .feature-card {
    width: 110px;
    height: 85px;
    margin-bottom: 10px;
  }

  .feature-card img {
    width: 50%;
  }

  .feature-content p {
    font-size: 12px;
    line-height: 1.3;
  }

  .feature-title {
    font-size: 12px;
  }
}


/* cards vertical silder contents */

.main-wrapper {   
  padding: 0 20px 40px;
  text-align: center; 
  position: relative;
}  

.main-wrapper h1 {   
  font-size: 2.5em;   
  margin-bottom: 30px;
  padding-top: 80px;
} 

/* Fixed Header with Indicators */
.fixed-header {
  position: sticky;
  top: 70px;
  width: 95%;
  margin: 0 auto;
  background-color: rgba(245, 245, 245, 0.95);
  padding: 15px 0;
  z-index: 1000;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  left: 0;
  right: 0;
}

/* Card Indicators Styles */
.card-indicators {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
}

.indicators-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 90%;
  padding: 0 15px;
}

.indicator {
  padding: 8px 15px;
  color: #727d8e;
  border-radius: 20px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.indicator i {
  margin-right: 5px;
  font-size: 1rem;
}

.indicator.active {
  color:#1b1af6;
}

/* Content wrapper adjustments */
.wrapper {  
  height: 60vh;
  position: relative;
  width: 100%;
} 

.list {   
  justify-content: center;   
  align-items: center;   
  height: 100%;   
  display: flex;   
  position: relative;   
  padding: 0.2rem;
  width: 100%;
} 

.item {   
  width: 70vw;   
  height: 65vh;   
  display: flex;   
  position: absolute;   
  left: 50%;
  top: 4.5vh;
  transform: translateX(-50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);   
  overflow: hidden;   
  border-radius: 12px; 
  border: 0.6px solid #b3b3b3;  
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  max-width: 1200px;
} 

.item h2 {   
  font-size: 2em;
  text-align: left;
} 

.item_content {   
  background-color: #fff;   
  color: #333;   
  flex-flow: column;   
  margin-top: 5%;   
  align-items: flex-start;   
  padding: 3rem 2rem 2rem 2rem;   
  display: flex;   
  position: relative;   
  width: 50%;   
  overflow-y: auto; 
  text-align: left;
} 

/* Vertical Divider */
.item_content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #767676;
}

.item_image {   
  width: 50%;   
  background-color: #ffffff;    
  display: flex;   
  align-items: center;   
  justify-content: center;   
  overflow: hidden; 
} 

.item_image img {   
  width: 100%;   
  height: 100%;
  object-fit: contain; 
} 

.item_icon {   
  font-size: 2rem;   
  margin-bottom: 1rem;   
  color: #4299e1; 
} 

.item_img {
  width: 45px;
  height: 45px;
  margin-bottom: 1rem;
}

.item_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.padding-global {   
  padding-left: 2.5rem;   
  padding-right: 2.5rem; 
} 

.padding-vertical {   
  padding: 2rem; 
} 

.feature-description {   
  margin-top: 1rem;   
  font-size: 1rem;   
  color: #4a5568;   
  font-weight: 500;   
  text-align: left;
  width: 100%;
  display: block;
} 

.feature-tag {   
  display: inline-block;   
  background-color: #ebf8ff;   
  color: #2b6cb0;   
  padding: 0.25rem 0.75rem;   
  border-radius: 1rem;   
  font-size: 0.75rem;   
  margin-top: 1rem;   
  font-weight: 600; 
} 

.best-for {   
  margin-top: 1rem;   
  font-style: italic;   
  color: #718096;   
  font-size: 1rem;
  text-align: left;
  width: 100%;
  display: block;
} 

/* Initially hide all items except the first one */ 
.item:not(:first-child) {   
  visibility: hidden; 
} 

@media (max-width: 991px) {   
  .item {     
    flex-direction: column;     
    height: auto;
    min-height: 80vh;
    width: 85vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
  }   
  
  .item_content, .item_image {     
    width: 100%;   
  }   
  
  .item_content {     
    height: 60%;     
    padding: 1.5rem;
    overflow-y: auto;
  }
  
  .item_content::after {
    display: none;
  } 
    
  .item_image {     
    height: 40%;   
  } 
} 

/* Specific mobile breakpoints */
@media (max-width: 767px) {
  .item {
    min-height: 60vh;
  }
  
  .fixed-header {
    padding: 10px 0;
    
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
  }
  
  .fixed-header::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
  }
  
  .indicators-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content; /* Allow container to expand beyond viewport */
    padding: 0 10px 5px; /* Add padding at bottom for potential scrollbar */
    gap: 6px;
    margin: 0 auto;
  }
  
  .indicator {
    padding: 8px;
    font-size: 0; /* Hide text */
    width: 36px;
    height: 36px;
    min-width: 36px; /* Ensure icons don't shrink */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* Make circular */
    background-color: #f5f5f5;
    transition: all 0.3s ease;
  }
  
  .indicator i {
    margin-right: 0;
    font-size: 1.1rem;
  }
  
  .indicator.active {
    background-color: rgba(27, 26, 246, 0.1);
    color: #1b1af6;
  }
  
  .item_image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* For even smaller screens, make icons slightly smaller and adjust image container */
@media (max-width: 480px) {
  .item {
    min-height: 50vh;
  }
  
  .indicator {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  
  .indicator i {
    font-size: 1rem;
  }
  
  .item_image {
    height: 180px;
    padding: 10px;
  }
  
  .item_image img {
    max-height: 160px;
  }
  
  .item h2 {
    font-size: 1.5em;
  }
  
  .feature-description, .best-for {
    font-size: 0.9rem;
  }
}

/* For very small screens */
@media (max-width: 320px) {
  .item {
    min-height: 45vh;
  }
  
  .item_image {
    height: 150px;
  }
  
  .item_image img {
    max-height: 130px;
  }
}


/* CTA section styles */
.action-banner {
  background-color: #326ada;
  color: white;
  padding: 50px 20px;
  /* Reduced from 60px to 50px */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.action-banner-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.action-banner h2 {
  font-size: 26px;
  /* Slightly reduced from 28px */
  margin-bottom: 8px;
  /* Reduced from 10px */
}

.action-btn {
  display: inline-block;
  background-color: white;
  color: #1b1af6;
  padding: 10px 28px;
  /* Slightly reduced from 12px 30px */
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 18px;
  /* Reduced from 20px */
  transition: all 0.3s ease;
}

.action-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Logo icons styles - Adjusted sizes and positions */
.brand-icons {
  position: absolute;
  z-index: 1;
}

.brand-icon-left {
  left: 5%;
  top: 55%;
  transform: translateY(-50%);
}

.brand-icon-center {
  left: 30%;
  top: 15%;
  transform: translateX(-50%);
}

.brand-icon-right {
  right: 5%;
  bottom: 15%;
}

/* Varied logo sizes */
.brand-icon-left .brand-image {
  width: 120px;
  height: auto;
}

.brand-icon-center .brand-image {
  width: 140px;
  height: auto;
}

.brand-icon-right .brand-image {
  width: 120px;
  height: auto;
}

/* Footer styles */
.site-footer {
  background-color: #f0f6ff;
  padding: 20px;
  text-align: center;
  color: #555;
}

.site-footer p {
  font-size: 15px;
}

/* Media queries for responsive layout */
@media (max-width: 768px) {

  .brand-icon-left .brand-image,
  .brand-icon-center .brand-image,
  .brand-icon-right .brand-image {
    width: 60px;
  }

  .brand-icon-left {
    left: 2%;
  }

  .brand-icon-right {
    right: 2%;
  }
}