*{
    box-sizing: border-box;
}
body{
    padding: 0px;
    margin: 0px;
    font-family: Arial, sans-serif;
    
}
#SiteIcon>img{
    height: 70px;
    border-radius: 100px;
    border: 2px solid red;
    box-shadow: 2px 1px 2px red;
}

  h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
  }

  .course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;

  }

  .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card img {
    width: 100%;
    height: auto;
  }

  .card-content {
    padding: 15px 20px 20px;
  }

  .card-content h2 {
    margin: 0 0 10px;
    color: #34495e;
    font-size: 20px;
  }

  .card-content p {
    color: #555;
    font-size: 15px;
    margin-bottom: 12px;
  }

  .price {
    font-weight: bold;
    font-size: 16px;
    color: #27ae60;
    margin-bottom: 10px;
  }

  .free {
    color: #2980b9;
  }

  .btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #2980b9;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }

  .btn:hover {
    background-color: #1e5f86;
  }

  
   .cta-button {
            display: block;
            text-align: center;
            background-color: #f44336;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            font-size: 20px;
            border-radius: 5px;
            margin: 40px auto;
        }
        .cta-button:hover {
            background-color: #d32f2f;
        }


         .contact-details, .contact-form {
            text-align: center;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        .contact-form button {
            background-color: #f44336;
            color: white;
            padding: 15px 30px;
            font-size: 18px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .contact-form button:hover {
            background-color: #d32f2f;
        }