@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Noto+Sans:wght@400;700&family=Noto+Sans+SC:wght@400;700&display=swap');
:root {
  --primary-blue: #114f7f;      
  --primary-light: #3498db;     
  --accent-blue: #44a7f6;       
  --accent-blue-light: #63c5ff; 
  --footer-bg: linear-gradient(135deg, #114f7f 0%, #3498db 100%);
  --footer-radius: 28px 28px 0 0;
  --footer-shadow: 0 -4px 32px rgba(44,62,80,0.12);
  --footer-text: #fff;
  --footer-link: #e0e6ed;
  --footer-link-hover: #fff;
  --footer-muted: #b3c0d1;
}
.footer-new {
  background: var(--footer-bg);
  color: var(--footer-text);
  border-radius: var(--footer-radius);
  box-shadow: var(--footer-shadow);
  margin-top: 48px;
  font-family: 'Noto Sans', 'Noto Sans SC', sans-serif;
  padding: 56px 0 24px 0;
}
.footer-new__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-new__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.footer-new__logo img {
  max-width: 160px;
  filter: grayscale(0.3) brightness(1.1);
  margin-bottom: 10px;
}
.footer-new__ventures h3,
.footer-new__contact h3 {
  font-family: 'Roboto', 'Noto Sans SC', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  color: var(--footer-text);
  position: relative;
  line-height: 1.3;
}
.footer-new__ventures h3::after,
.footer-new__contact h3::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--accent-blue);
  border-radius: 2px;
  margin-top: 7px;
}

@media (max-width: 600px) {
  .footer-new__ventures h3::after,
  .footer-new__contact h3::after {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer-new__ventures ul,
.footer-new__contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-new__ventures-list {
  list-style-type: none;
}
.footer-new__ventures ul li,
.footer-new__contact ul li {
  margin-bottom: 14px;
}
.footer-new__ventures ul li:last-child,
.footer-new__contact ul li:last-child {
  margin-bottom: 0;
}
.footer-new__ventures a {
  color: var(--footer-link);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Noto Sans', 'Noto Sans SC', sans-serif;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-new__ventures a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}
.footer-new__contact-text {
  color: var(--footer-link);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-left: 10px;
  font-family: 'Noto Sans', 'Noto Sans SC', sans-serif;
}
.footer-new__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-new__icon-link:hover .footer-new__icon-svg {
  background: #e3f2fd;
}
.footer-new__icon-link:active .footer-new__icon-svg {
  background: #bbdefb;
}
.footer-new__icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(44,62,80,0.12);
}

.footer-new__contact h4 {
  font-family: 'Roboto', 'Noto Sans SC', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--footer-text);
}
.footer-new__contact p {
  color: var(--footer-muted);
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 4px 0;
  line-height: 1.5;
  font-family: 'Noto Sans', 'Noto Sans SC', sans-serif;
}
.footer-new__copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Noto Sans', 'Noto Sans SC', sans-serif;
  color: var(--footer-muted);
  letter-spacing: 0.2px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .footer-new {
    border-radius: 18px 18px 0 0;
    padding: 40px 0 16px 0;
  }
  .footer-new__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }
  .footer-new__logo {
    margin-bottom: 10px;
  }
  .footer-new__logo img {
    margin: 0 auto 10px;
    display: block;
  }
  .footer-new__ventures ul,
  .footer-new__contact ul:not(.footer-new__icons-only) {
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    list-style-type: none;
    padding-left: 0;
  }
  .footer-new__contact {
    grid-column: span 1;
    text-align: left;
    position: relative;
  }
  .footer-new__icons-only {
    justify-content: center;
    margin: 0 0 28px 0;
    flex-wrap: nowrap;
    width: auto;
    display: flex;
    text-align: center;
    padding-bottom: 15px;
    position: relative;
  }
  .footer-new__icons-only:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: rgba(255,255,255,0.1);
  }
  .footer-new__contact h4 {
    margin-top: 10px;
    margin-bottom: 12px;
    text-align: center;
    clear: both;
  }
  .footer-new__contact p {
    text-align: center;
    margin-bottom: 8px;
  }
  .footer-new__ventures h3, .footer-new__contact h3 {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-new__contact h3 {
    width: 100%;
    text-align: center;
  }
}

.left-side-content {
  text-align: left;
  display: block;
}

.footer-new__icons-only {
  padding: 0;
  margin: 0 0 20px 0;
  list-style: none;
  font-size: 0;
  text-align: left;
  display: inline-block;
}

@media (max-width: 600px) {
  .left-side-content {
    text-align: center;
  }
  
  .footer-new__icons-only {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

.footer-new__icons-only li {
  display: inline-block;
  margin: 0;
  margin-right: 24px;
  padding: 0;
  vertical-align: top;
}

@media (max-width: 600px) {
  .footer-new__icons-only li {
    margin: 0 12px;
  }
  
  .footer-new__icons-only li:last-child {
    margin-right: 0;
  }
}

.footer-new__icon-link {
  display: block;
  width: 40px;
  height: 40px;
}

.footer-new__icon-svg {
  display: block;
  width: 40px;
  height: 40px;
}

.footer-new__icons-only svg {
  display: block;
  width: 40px;
  height: 40px;
}
