.paragraph--type--footer-general {
  /* padding: 60px 0; */
  background-color: #fff;
  font-family: 'Inter', sans-serif;
}

.footer-container {
position: relative;
    border-radius: 40px;
    padding: 80px 60px 60px;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 1.5rem;
    background-color: #42aaf5;
    background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E);
}

/* Logo Box Overlap with SVG Notch */
.footer-logo-box {
  position: absolute;
  top: -1px;
  /* Align with top-left */
  left: -1px;
  width: 303px;
  height: 111px;
  background: url('../images/logofooter.svg') no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 30px 30px;
  /* Position logo inside the white area */
  z-index: 5;
}

/* Specific styling to ensure the branding block logo looks good */
.footer-logo-box .block-system-branding-block {
  margin: 0;
  padding: 0;
}

.footer-logo-box .block-system-branding-block a {
  display: flex;
  align-items: center;
}

.footer-logo-box img {
  max-height: 55px;
  width: auto;
}

/* Hide site name if it appears in branding block */
.footer-logo-box .site-name,
.footer-logo-box .site-slogan {
  display: none;
}

/* Main Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 2.5fr;
  gap: 30px;
  padding-top: 40px;
  /* Space for logo box */
}

.footer-col h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  font-weight: 500;
  font-family: 'Rubik';
  padding-bottom: 0px;
  padding-left: 2px !important;
}

.footer-col ul li a:hover {
  color: #fff;
  font-weight: 600;
}

/* Tagline */
.footer-tagline {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 600;
  color: #fff;
  letter-spacing: -2.6px;
}

.footer-tagline p {
  margin: 0;
}

/* Copyright Section with SVG Notch */
.footer-copyright-box {
  position: absolute;
  bottom: -2px;
  right: -1px;
  width: 517px;
  height: 112px;
  background: url('../images/copy-rights.svg') no-repeat;
  background-size: contain;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0 40px 15px 0;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  z-index: 5;
}

.navbar-brand div {
  display: none;
}

footer {
  padding-bottom: 0 !important;
}


/* Responsive removed - moved to responsive.css */