/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
  }
  main {
    flex: 1; /* This allows the main content to grow and push the footer to the bottom */
  }

  body {
    display: flex;
  flex-direction: column;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  min-height: 100vh;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  /* Header */
  header {
   display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #182570d3;
  color: white;
  padding: 1rem 2rem;
  }
  
  .logo img {
    width: 50px;
  height: 50px;
  border-radius: 50%;
  vertical-align: middle;
    
  }
  
  .logo span {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  nav ul {
    display: flex;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #ffd700;
  }
  
  /* Footer */
  footer {
    background-color:#182570d3;
    color: #fff;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    align-items: flex-end;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
  }

  .footer-brand img {
    width: 50px;
  height: 50px;
  border-radius: 50%;
  vertical-align: middle;
  }
  
  .footer-brand p {
    margin-top: 10px;
    font-size: 0.9rem;
  }
  
  .footer-links {
    display: flex;
  }
  
  .footer-column {
    margin-right: 2rem;
  }
  
  .footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .footer-column ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-column ul li a {
    color: #fff;
    font-size: 0.9rem;
  }
  
  .footer-column ul li a:hover {
    color: #ffd700;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-column {
      margin-right: 0;
      margin-bottom: 1rem;
    }
  }
  
  /* About Section */
  .about-section {
    padding: 2rem;
    background-color: white;
  }
  
  .about-section h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .about-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  /* Services Section */
  .services-section {
    padding: 2rem;
    background-color: white;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .service-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .service-card h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #666;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 2rem;
    background-color: white;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
  }
  
  .contact-form button {
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #182570d3;
  }
  
  /* Terms and Privacy Section */
  .terms-section,
  .privacy-section {
    padding: 2rem;
    background-color: white;
  }
  
  .terms-section h1,
  .privacy-section h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .terms-section p,
  .privacy-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
 