.btn {
  background-color: DodgerBlue;
  border: none;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 20px;
  /* margin-top: 0px;  Space above the button */
  /* margin-bottom: 15px; Space below the button */
  margin: 20px auto;
  display: inline-block; /* Ensures proper spacing */
}

.btn:hover {
  background-color: RoyalBlue;
}



/* Contact Card */

.contact-card {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    max-width: 900px; /* Matches project card width */
    margin: 40px auto;
    padding: 20px;
    text-align: left;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .contact-card h1 {
    text-align: center; 
    margin: 20px auto;
    margin-top: 0px;
    font-size: 24px;
    color: #333;
  }
  
  .contact-description {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
  }
  
  /* Contact Details */
  .contact-details {
    display: flex;
    flex-direction: column; /* Stacks the rows vertically */
    gap: 15px; /* Adds space between rows */
  }
  
  .contact-row {
    display: flex;
    align-items: center; /* Vertically centres the text with the icons */
    margin: 20px auto
  }
  
  .contact-icon {
    width: 40px; /* Adjust icon size */
    height: 40px;
    margin-right: 15px; /* Adds space between the icon and text */
  }
  
  .contact-row p {
    margin: 0;
    font-size: 16px;
    color: #555;
  }
  
  .contact-row a {
    color: #007bff;
    text-decoration: none;
  }
  
  .contact-row a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-card {
      padding: 15px;
    }
  
    .contact-description {
      font-size: 14px;
    }
  
    .contact-icon {
      width: 30px;
      height: 30px;
      margin-right: 10px;
    }
  
    .contact-row p {
      font-size: 14px;
    }
  }
  