footer {
    text-align: center;
    padding: 30px 20px; /* Increased padding */
    margin-top: 30px; /* Increased margin */
    font-size: 0.9em;
}

footer p {
    margin: 0;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Added Footer Column Styles */
.footer-container {
    display: flex;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
    justify-content: space-between; /* Distributes space between columns */
    gap: 20px; /* Adds space between columns */
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left; /* Align text to the left within columns */
}

.footer-column {
    flex: 1; /* Allows columns to grow and shrink */
    min-width: 250px; /* Minimum width before wrapping */
    margin-bottom: 20px; /* Space below columns when wrapped */
}

.footer-column-1 {
    /* Specific styles for column 1 if needed */
}

.footer-column-2 {
    /* Specific styles for column 2 if needed */
    align-items: flex-start !important;
}

.footer-column-2 .footer-menu-navigation ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-column-2 .footer-menu-navigation ul li {
    margin-bottom: 8px;
}

.footer-column-2 .footer-menu-navigation ul li a {
    text-decoration: none;
    color: #007bff; /* Match other footer links */
}

.footer-column-2 .footer-menu-navigation ul li a:hover {
    text-decoration: underline;
}

.footer-column-3 {
    /* Specific styles for column 3 if needed */
}

.footer-column-3 h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #343a40; /* Slightly darker heading color */
    font-size: 1.1em;
}

.footer-column-3 p {
    margin-bottom: 8px;
}

.site-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef; /* Optional separator line */
    margin-top: 20px;
}

/* Responsive adjustments (example for screens smaller than 768px) */
@media (max-width: 767px) {
    .footer-container {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center columns when stacked */
        text-align: center;
    }

    .footer-column {
        min-width: 100%; /* Make columns full width when stacked */
        margin-bottom: 30px;
    }

     .footer-column:last-child {
        margin-bottom: 0;
    }
}

/* === Footer Custom Styles === */
.footer-custom {
  background: none;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1536F2;
}
.footer-container-custom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 60px 40px 80px;
  gap: 90px;
}
.footer-col {
  flex: 1 1 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-col-1 {
  max-width: 420px;
}
.footer-logo-social {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f2f2f2;
  letter-spacing: 1px;
}
.footer-desc {
  color: #f2f2f2;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  text-transform: none;
  text-align: left;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.footer-social-link:hover {
  opacity: 0.7;
}
.footer-social-link svg {
  fill: #fff !important;
  transition: fill 0.2s;
}
.footer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 36px;
  font-family: Prompt, sans-serif;
  color: #f2f2f2;
  letter-spacing: 0.5px;
}
.footer-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start !important;
}
.footer-services li {
  text-align: left !important;
  justify-content: flex-start !important;
}
.footer-services li a {
  color: #f2f2f2;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-services li a:hover {
  opacity: 0.7;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-contact-list li {
  background: #000000;
  border: 2px solid #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  box-shadow: 0 2px 12px rgba(21, 54, 242, 0.06);
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0;
}
.footer-contact-list .footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  max-width: 36px;
  height: 36px;
}
.footer-contact-list .footer-icon svg {
  fill: #ffffff !important;
}
.footer-contact-list a,
.footer-contact-list span {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
  flex: 1;
  text-align: left;
  display: block;
  line-height: 1.3;
}
.site-info-custom {
  background: none;
  text-align: center;
  padding: 24px 0 16px 0;
  color: #f2f2f2;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media (max-width: 1100px) {
  .footer-container-custom {
    flex-direction: column;
    gap: 48px;
    padding: 48px 20px 32px 20px;
  }
  .footer-col {
    min-width: 0;
    max-width: 100%;
    align-items: flex-start;
  }
  .footer-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  .footer-services {
    gap: 18px;
  }
  .footer-contact-list {
    gap: 16px;
  }
  .footer-contact-list li {
    padding: 14px 18px;
    font-size: 0.9rem;
  }
} 