*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
  }
  body{
    height: 100vh;
    width: 100%;
  }
  .ad-type-container {
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 20px;
    background-color: #f9fbfd;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .ad-type-container h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #121212;
  }
  
  .ad-type-options {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .ad-option {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    width: 400px;
    height: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    outline: none;
  }
  
  .ad-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  .icon-circle {
    background-color: #e6f0ff;
    color: #3b82f6;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
  }
  
  .ad-option h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #121212;
  }
  
  .ad-option p {
    font-size: 14px;
    color: #555;
  }
  