 /* 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; }

    /* SERVICES HERO SECTION */
    .services-hero {
      background: #000;
      padding: 60px 18px;
      text-align: center;
    }
    .services-hero .inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .services-small-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #4be000;
    }
    .services-big-title {
      font-size: 48px;
      font-weight: 900;
      margin-bottom: 48px;
      line-height: 1.1;
      color: #fff;
    }
    .hero-image {
      width: 100%;
      height: 500px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('hero-mic-mixer.jpg');
      background-size: cover;
      background-position: center;
      border-radius: 30px;
    }

    /* SERVICES CONTENT SECTIONS */
    .services-content {
      background: #000;
      padding: 0 18px 60px;
    }
    .services-row {
      max-width: 1200px;
      margin: 0 auto 80px;
      display: flex;
      gap: 60px;
      align-items: flex-start;
    }
    .service-card {
      flex: 1;
    }
    .service-card h2 {
      font-size: 48px;
      font-weight: 900;
      margin-bottom: 16px;
      color: #fff;
      line-height: 1.1;
    }
    .service-card p {
      font-size: 16px;
      color: #ccc;
      line-height: 1.5;
      margin-bottom: 32px;
    }
    .service-images {
      display: flex;
      gap: 16px;
    }
    .image-wrapper {
      flex: 1;
      border-radius: 30px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .image-wrapper.purple {
      background: #e43aa1;
      padding: 8px;
    }
    .image-wrapper.green {
      background: #4be000;
      padding: 8px;
    }
    .service-image {
      width: 100%;
      height: 240px;
      background-size: cover;
      background-position: center;
      border-radius: 20px;
      position: relative;
    }
    .service-image.border-white {
      border: 2px solid #fff;
    }

    /* FOOTER STYLES */
    .footer {
      background: #000;
      color: #fff;
      padding: 60px 18px 40px;
      text-align: center;
      border-top: 1px solid #333;
    }
    .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) {
      .services-row {
        flex-direction: column;
        gap: 40px;
      }
      .service-images {
        flex-direction: column;
      }
      .hero-image {
        height: 300px;
      }
    }
    @media (max-width: 520px) {
      .services-hero {
        padding: 40px 12px;
      }
      .services-big-title {
        font-size: 36px;
      }
      .services-content {
        padding: 0 12px 40px;
      }
      .service-card h2 {
        font-size: 36px;
      }
      .service-image {
        height: 180px;
      }
    }








   @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;
}
   }
   

   @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;
}
   }