/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  /* Body Styling */
  body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header Styling */
  header {
    background-color: #2d2d2d;
    padding: 20px 0;
    color: white;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  header .highlight {
    color: #ff6347; /* Tomato red for highlighting */
  }
  
  header nav ul {
    list-style: none;
  }
  
  header nav ul li {
    display: inline-block;
    margin-right: 20px;
  }
  
  header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  header nav ul li a:hover {
    color: #ff6347;
  }
  
  /* Contact Section Styling */
  .contact-info {
    background-color: #fff;
    text-align: center;
    padding: 60px 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff6347;
  }
  
  .contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .detail {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  .detail i {
    font-size: 2rem;
    color: #ff6347;
    margin-bottom: 10px;
  }
  
  .detail p {
    font-size: 1.2rem;
    color: #333;
  }
  
  .detail a {
    color: #ff6347;
    text-decoration: none;
  }
  
  .detail a:hover {
    text-decoration: underline;
  }
  
  /* Footer Styling */
  footer {
    background-color: #2d2d2d;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  footer p {
    font-size: 1rem;
    color: #ccc;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .contact-details {
      flex-direction: column;
      gap: 20px;
    }
  
    .detail {
      width: 100%;
      padding: 15px;
    }
  
    footer p {
      font-size: 0.9rem;
    }
  }
  