body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #002d72;
    position: relative;
  }
  
  .overlay {
    position: absolute;
    inset: 0;
    background: none;
    z-index: 0;
  }
  
  .content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: auto;
    padding: 20px;
  }
  
  .logo {
    max-width: 220px;
    margin-bottom: 20px;
    border-radius: 15px;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #002d72;
  }
  
  p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .timer {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .countdown {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
  }
  
  .time-block {
    background: #f47c20;
    padding: 15px;
    border-radius: 10px;
    width: 70px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #fff;
  }
  
  .time-block.pop {
    transform: scale(1.1);
  }
  
  .number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
  }
  
  .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
  }
  
  .contact a {
    color: #002d72;
    text-decoration: none;
    font-weight: bold;
  }
  
  @media (max-width: 500px) {
    h1 {
      font-size: 1.8rem;
    }
    .countdown {
      gap: 10px;
    }
    .time-block {
      width: 60px;
      padding: 10px;
    }
    .number {
      font-size: 2rem;
    }
    .label {
      font-size: 0.75rem;
    }
  }
  