/* General Styles */
body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
  }
  
  .logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    z-index: 2;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Development Selector Section */
  .dev-container-1 {
    margin: 2% auto 2%;  /* Added 2% margin at the bottom */
    padding: 2vw;
    width: 80%;
    max-width: 1200px; /* Restricts excessive growth */
    border: 3px solid gold;
    border-radius: 10px;
    box-shadow: 2px 2px 20px grey;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; /* Ensures children are centered */
  }
  
  .dev-logo, .sitemap, .dev-info {
    width: 100%;
    max-width: 1000px; /* Max width for larger screens */
  }

  h3 {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
  }

  a {
    text-decoration: none;
  }

  h4 {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    font-size: 3rem;
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: black;
    text-decoration: none;
    text-align: center;
  }
  
  .oc-dev-btn {
    background-color: gold;
    border-radius: 10px;
    display: flex;
    justify-content: center; /* Centering the anchor inside */
    align-items: center; /* Vertical alignment */
    width: 100%; /* Full width to fit content */
    max-width: 500px; /* Max width for button on larger screens */
    padding: 10px;
    box-shadow: 2px 2px 5px black;
    cursor: pointer;
    margin: 0 auto; /* Centering the button container */
  }
  
  .dev-btn {
    text-decoration: none;
    color: black; /* Styling text inside the button */
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    width: 100%; /* Full width to extend clickable area */
  }
  
  .oc-dev-btn:hover {
    transform: scale(1.1);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .dev-container-1 {
      flex-direction: column;
      width: 90%;
      margin-bottom: 5%; /* Increased bottom margin for better spacing on smaller devices */
    }
  
    .sitemap, .dev-logo {
      order: -1; /* Bring images to top on small screens */
    }
  
    .dev-info, .oc-dev-btn {
      width: 100%;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .sitemap {
      display: none; /* Hide sitemap on very small screens */
    }
  
    .dev-container-1 {
      padding: 10px;
      width: 100%;
    }
  }
  
  /* Apply global style improvements */
  * {
    box-sizing: border-box; /* Better box sizing */
  }
  
  /* Enhance form elements for better usability on mobile devices */
  input[type="text"], input[type="email"], select {
    width: 100%; /* Full-width inputs on smaller screens */
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  /* Responsive buttons */
  button, .button {
    width: 100%; /* Easier to tap on mobile */
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover, .button:hover {
    background-color: #0056b3;
  }
  
  /* Simplify newsletter and other sections for a cleaner mobile experience */
  .newsletter-signup-section, .address-form, .newsletter-form {
    padding: 20px;
    text-align: center;
  }
  
  .newsletter-link, .newsletter-form label {
    display: block; /* Better label and link handling */
  }
  