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

.footer-container {
  position: relative;
  background-color: #55b3ff;
  border-radius: 40px;
  padding: 80px 60px 60px;
  color: #fff;
  margin-top: 40px;
}

/* 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: 28px;
  font-weight: 700;
  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: 18px;
  transition: color 0.3s ease;
}

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

/* Tagline */
.footer-tagline {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.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 */