/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #004080; /* Dark Blue */
    background-color: #FFFFFF; /* White */
  }
  
  /* Header Styles */
  
  header {
    background-color: #004080; /* Dark Blue */
    color: #FFD700; /* Vivid Yellow */
    padding: 20px;
    text-align: center;
  }
  
  header h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .logo {
    float: left;
    margin: 10px;
    max-width: 100%; /* make the image responsive */
    height: auto;
    transform: scale(0.5); /* zoom the image by 1.5 times */
    transition: transform 0.5s; /* add a smooth transition effect */
  }
  
  .logo:hover {
    transform: scale(0.9); /* zoom in when hovered */
  }
  
  /* Content Styles */
  
  .content {
    padding: 20px;
    text-align: center;
  }
  
  .content h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .content p {
    margin-bottom: 20px;
  }
  
  /* Contact Styles */
  
  .contact {
    background-color: #FFD700; /* Vivid Yellow */
    color: #004080; /* Dark Blue */
    padding: 20px;
    margin-top: 20px;
    text-align: center;
  }
  
  .contact a {
    color: #004080; /* Dark Blue */
    text-decoration: none;
  }
  
  .contact a:hover {
    text-decoration: underline;
  }
  
  /* Footer Styles */
  
  footer {
    background-color: #004080; /* Dark Blue */
    color: #FFD700; /* Vivid Yellow */
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  
  footer p {
    margin-bottom: 10px;
  }
  
  /* Responsive Design */
  
  @media (max-width: 768px) {
    /* responsive design styles here */
  }
  
  @media (max-width: 480px) {
    /* responsive design styles here */
  }