body {
    background-color: #2B455C;
    margin: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px 15px;
    /* Reduced for mobile */
    background: no-repeat center center/cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(43, 69, 92, 0.8), rgba(43, 69, 92, 0.4));
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.2rem;
    }

    .description-box {
        padding: 1.5rem !important;
        text-align: left !important;
        font-size: 1rem !important;
    }
}

.description-box {
    background: rgba(255, 255, 255, 0.98);
    color: #2B455C;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
    line-height: 1.8;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 4px;
    padding: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.video-placeholder iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.round-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
}

  /* Target the link inside your phone span */
  #call-btn a {
      color: #ffffff;
      /* Makes the text white */
      text-decoration: none;
      /* Removes the underline */
      cursor: pointer;
      /* Ensures it looks clickable on desktop */
  }

  /* Optional: Add a slight hover effect so users know it's a link */
  #call-btn a:hover {
      opacity: 0.8;
  }