* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  background: #060000;
  overflow: hidden;
}

.my-container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 40px;
}

/* Logo Left Side for Large Screens */
.left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left img {
  width: 500px;
  height: auto;
}

/* Right Side Content */
.right {
  flex: 2;
  color: #fff;
  text-align: left;
}

h1 {
  font-size: clamp(32px, 5vw, 80px);
  color: #ede580;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(18px, 3vw, 40px);
  color: #ede580;
  text-transform: uppercase;
  margin-bottom: 10px;
}

p {
  font-size: clamp(14px, 2vw, 24px);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Counter */
.counter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.unit-container {
  background: #fff;
  padding: 10px 20px;
  border-radius: 20px;
}

.value {
  font-size: clamp(20px, 4vw, 48px);
  font-weight: 900;
  color: #e71828;
}

.unit {
  font-size: clamp(12px, 2vw, 18px);
  font-weight: 900;
  text-transform: uppercase;
  color: #1d3557;
  text-align: center;
}

/* Social */
.social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social a {
  text-decoration: none;
}

.social a i {
  font-size: clamp(18px, 4vw, 28px);
  color: #ede580;
  transition: color 0.3s ease;
}

.social a:hover i {
  color: #e71828;
}

/* Small Screens: Stack Vertically */
@media (max-width: 991px) {
  .my-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 20px;
    gap: 10px;
  }

  .left {
    width: 100%;
    justify-content: center;
  }

  .left img {
    width: 200px;
  }

  .right {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
    text-align: center;
  }

  .counter {
    justify-content: center;
  }

  .social {
    justify-content: center;
  }
}
