footer{
  margin: 0;
  padding: 30px 0px !important;
  padding-bottom: 0 !important;
} 
@media(max-width: 768px){
  .footer-flower{
    display: none !important;
  }
}
.footer {
  background-color: #357486;
  color: #fff;
  padding: 40px 20px 0;
  line-height:20px;
}
.footer-flower img{
  width: 100% !important;
  opacity: 0.3;
}
.footer-flower {
  width: 150px !important; 
  display: flex;
  justify-content: center;
  align-items: center;
  height: 86%;
  margin: 0 50px;
}
.footer-flower .left{
  margin-left:40px !important;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* justify-content: space-between; */
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}
.footer-section p{
  margin-bottom: 10px;
  font-family:'Roboto',sans-serif;
  font-size:14px;
  font-weight:400;
}
.logo-section .logo {
  width: 100px;
  margin-bottom: 10px;
}

.logo-section h2 {
  margin: 0;
  color: #f7b045;
}

.logo-section p {
  margin: 2px 0 10px;
  color: #ccc;
}

.desc {
  font-size: 14px;
  line-height: 1.6;
}

.countdown {
  margin-top: 20px;
  padding: 10px;
  background: #1f2f2a;
  border: 1px solid #f7b045;
  border-radius: 10px;
  display: inline-block;
}

.count-label {
  margin: 0 0 10px;
  color: #f7b045;
  font-weight: bold;
}

.count-boxes {
  display: flex;
  gap: 10px;
}

.count-boxes div {
  background: #2a3d38;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  min-width: 60px;
}

.count-boxes span {
  font-size: 20px;
  font-weight: bold;
  color: #f7b045;
}

.count-boxes small {
  font-size: 12px;
  color: #ccc;
}

h3 {
  color: #f7b045;
  /*border-bottom: 2px solid #f7b045;*/
  display: inline-block;
  padding-bottom: 5px;
}

ul {
  list-style: none;
  padding-left: 0;
}
i{
  color: #f7b045;
}
li i{
  color: #f7b045;
}
li {
  margin: 6px 0;
}

a {
  color: #fff;
  text-decoration: none;
}

.footer a {
  color: #fff !important;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.channel-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.channel-links img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  width: 100%;
  background: #1b2a26;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  font-size: 14px;
}

.footer-bottom a {
  color: #f7b045;
  text-decoration: none;
  margin: 0 5px;
}


/* Flower decorations */
.footer {
  position: relative;
}
.footer-flower {
  position: absolute;
  top: 20px;
  width: 80px;
  opacity: 0.3;
}
.footer-flower.left {
  left: 20px;
}
.footer-flower.right {
  right: 20px;
  transform: scaleX(-1);
}

/* hide the flowers & tighten everything up on mobile */
@media only screen and (max-width: 768px) {
  /* remove the decorative flowers */
  .footer-flower {
    display: none !important;
  }

  /* make the footer edge-to-edge with just 5% gutters */
  .footer {
    padding: 10px 5% 0;      /* top / sides / bottom */
    box-sizing: border-box;  /* ensures padding doesn’t blow out width */
  }

  /* ensure the inner “top” section fills that space */
  .footer-top {
    width: 100%;
    margin: 0;
    gap: 15px;               /* still keep a little gap between columns */
  }

  /* each column stacks full-width */
  .footer-section {
    min-width: auto;         /* cancel that 220px floor */
    flex: 1 1 100%;          /* allow wrapping to 100% */
  }

  /* footer-bottom edge-to-edge, too */
  .footer-bottom {
    width: 100%;
    padding: 15px 0;         /* only vertical padding now */
    margin-top: 20px;
  }
}
