 /* Reset-ish */
    *{box-sizing:border-box;margin:0;padding:0}
    html,body{height:100%;font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial}
    body{background:#000;color:#fff;line-height:1.3}

    /* Top thin language/contact bar */
    .top-strip{
      background:#4be000; /* bright lime */
      color:#000;
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:6px 18px;
      font-weight:700;
      font-size:14px;
    }
    .top-strip .left, .top-strip .right{display:flex;align-items:center;gap:12px}
    .lang-badge{background:transparent;padding:6px 10px;border-radius:2px}
    .contact-badge{display:flex;align-items:center;gap:8px;padding:6px 10px}

    /* Black header with logo and social/listen */
    .brand-header{
      background:#000;
      padding:18px;
      border-bottom:4px solid #000; /* keep separation from nav */
      display:flex;
      align-items:center;
      justify-content:space-between;
    }
    .brand-left{
      display:flex;
      align-items:center;
      gap:18px;
    }
    .logo-wrap img{
      height:56px; /* matches screenshot visual */
      display:block;
    }
    /* social + listen area */
    .brand-right{
      display:flex;
      align-items:center;
      gap:14px;
    }
    .social-icons{display:flex;gap:10px;align-items:center}
    .social-icon{
      width:38px;height:38px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
      border:2px solid #4be000;background:#000;color:#4be000;font-weight:700;font-size:18px;
      text-decoration:none;
    }
    .listen-btn{
      background:#4be000;color:#000;padding:10px 18px;border-radius:20px;font-weight:800;border:none;
      display:inline-flex;align-items:center;gap:10px;text-decoration:none;
    }

    /* Green nav bar centered items */
    .nav-bar{
      background:#4be000;
      display:flex;
      justify-content:center;
      padding:10px 0;
    }
    .nav{
      display:flex;
      gap:40px;
      list-style:none;
      font-weight:700;
      align-items:center;
    }
    .nav a{color:#000;text-decoration:none;padding:6px 0}
    .nav a.active { background: #000; color: #4be000; padding: 6px 12px; border-radius: 20px; }

    /* CONTACT SECTION STYLES */
    .contact-section {
      background: #000;
      padding: 60px 18px;
    }
    .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 100px;
      align-items: flex-start;
    }
    .contact-left {
      flex: 1;
    }
    .contact-small-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #fff;
    }
    .contact-big-title {
      font-size: 48px;
      font-weight: 900;
      margin-bottom: 32px;
      line-height: 1.1;
      background: linear-gradient(to right, #fff, #4be000);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .contact-form {
      display: grid;
      gap: 24px;
    }
    .name-row {
      display: flex;
      gap: 24px;
    }
    .name-row > div {
      flex: 1;
    }
    .contact-form label {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 8px;
      display: block;
      color: #fff;
    }
    .contact-form input,
    .contact-form textarea {
      background: #000;
      border: 2px solid #fff;
      border-radius: 30px;
      padding: 12px 20px;
      color: #fff;
      font-size: 16px;
      width: 100%;
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: #ccc;
    }
    .contact-form textarea {
      height: 120px;
      resize: none;
    }
    .submit-btn {
      background: #e43aa1;
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 12px 40px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      width: fit-content;
    }
    .contact-right {
      flex-shrink: 0;
      width: 380px;
      background: linear-gradient(to bottom, rgba(0,100,0,0.7), rgba(0,128,0,0.7)), url(images/image\ 24.png);
      background-size: cover;
      background-position: center;
      border: 2px solid transparent;
      border-radius: 30px;
      padding: 30px;
      color: #fff;
      margin-right: -32px;
    }
    .contact-right h3 {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .contact-right p.intro {
      font-size: 16px;
      margin-bottom: 24px;
      color: #ccc;
    }
    .info-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 16px;
    }
    .info-item span {
      font-size: 20px;
    }
    .follow-us {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .contact-right .social-icons {
      gap: 12px;
    }
    .contact-right .social-icon {
      background: #4be000;
      border: none;
      color: #000;
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
    .hear-from-you {
      font-size: 16px;
      margin-top: 24px;
      color: #ccc;
    }

    /* MAP SECTION STYLES */
    .map-section {
      background: #000;
      padding: 0 18px 60px;
    }
    .map-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .map-iframe {
      width: 100%;
      height: 300px;
      border: none;
      border-radius: 30px;
      filter: grayscale(1);
    }

    /* FOOTER STYLES */
    .footer {
      background: #000;
      color: #fff;
      padding: 60px 18px 40px;
      text-align: center;
      border-top: 1px solid #333; /* optional separation from content */
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-title {
      font-size: 32px;
      font-weight: 800;
      margin: 0 0 8px;
    }
    .footer-sub {
      font-size: 16px;
      color: #ccc;
      max-width: 600px;
      margin: 0 auto 40px;
    }
    .now-on-air {
      position: relative;
      display: inline-flex;
      align-items: center;
      background: #4be000;
      color: #000;
      font-size: 18px;
      font-weight: 800;
      padding: 8px 24px;
      border-radius: 30px;
      margin-bottom: 30px;
    }
    .now-stripe {
      position: absolute;
      left: -40px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: auto;
    }
    .now-dash {
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      width: 200px;
      height: 2px;
      background: repeating-linear-gradient(to right, #4be000, #4be000 4px, transparent 4px, transparent 8px);
    }
    .on-air-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      margin-bottom: 30px;
    }
    .on-air-card {
      background: #1a1a1a;
      border-radius: 30px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
      width: auto;
    }
    .on-air-card img {
      width: 120px;
      height: 120px;
      border-radius: 20px;
      object-fit: cover;
    }
    .card-text {
      text-align: left;
    }
    .card-text h3 {
      font-size: 20px;
      font-weight: 700;
      margin: 0 0 4px;
    }
    .card-text p {
      font-size: 16px;
      color: #ccc;
      margin: 0 0 4px;
    }
    .card-text span {
      font-size: 14px;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .made-in {
      background: #333;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      margin-top: 12px;
      display: inline-block;
    }
    .logo-side {
      text-align: left;
    }
    .logo-text {
      font-size: 40px;
      font-weight: 900;
      line-height: 0.9;
      margin: 0 0 8px;
    }
    .logo-orange {
      color: #ff9900;
    }
    .logo-green {
      color: #4be000;
    }
    .stay-tune {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 12px;
    }
    .footer .social-icons {
      justify-content: flex-start;
      gap: 12px;
    }
    .footer .social-icon {
      background: #4be000;
      color: #fff;
      border: none;
      font-size: 20px;
      width: 40px;
      height: 40px;
    }
    .listen-now {
      background: #4be000;
      color: #000;
      padding: 12px 40px;
      border-radius: 40px;
      font-weight: 800;
      font-size: 18px;
      border: none;
      cursor: pointer;
      margin-bottom: 40px;
    }
    .footer-line {
      border: none;
      border-top: 1px solid #333;
      margin: 0 auto 20px;
      width: 100%;
    }
    .copyright {
      font-size: 14px;
      color: #999;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .contact-inner {
        flex-direction: column;
        gap: 48px;
      }
      .contact-left {
        flex: none;
      }
      .contact-right {
        width: 100%;
        margin-right: 0;
      }
      .map-iframe {
        height: 250px;
      }
    }
    @media (max-width: 520px) {
      .contact-section {
        padding: 40px 12px;
      }
      .contact-big-title {
        font-size: 36px;
      }
      .name-row {
        flex-direction: column;
        gap: 24px;
      }
      .map-section {
        padding: 0 12px 40px;
      }
      .contact-right {
        padding: 20px;
        margin-right: -12px;
      }
    }

    

   @media (min-width: 321px) and (max-width: 540px) {

    .now-dash {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 2px;
    background: repeating-linear-gradient(to right, #4be000, #4be000 4px, transparent 4px, transparent 8px);
}
.logo-text {
    font-size: 30px;
    font-weight: 900;
    line-height: 0.9;
    margin: 0 0 8px;
}
   }