
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .properties,
  .services, 
  .agents {
    padding: 2rem;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .property-cards,
  .service-cards,
  .agent-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .property-card,
  .service-card {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 1rem;
    margin: 0.5rem;
    flex-basis: calc(33% - 1rem);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
  }

  .agent-card {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 1rem;
    margin: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
  }
  
  .property-card:hover,
  .service-card:hover,
  .agent-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .property-card img,
  .service-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 0.5rem;
  }

  .agent-card img {
    width: 300px;
    height: 300px;
    border-radius: 5px;
    margin-bottom: 0.5rem;
  }

  .agent-card .placeholder {
    width: 300px;
    height: 300px;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    background-color: #ccc;
  }
  
  .property-card h3,
  .agent-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333333;
  }

  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333333;
  }

  .service-card p {
    font-size: 1rem;
    color: #333333;
  }
  
  .property-card p,
  .agent-card p {
    font-size: 1rem;
  }

  .valuation-form-section {
    padding: 2rem;
    text-align: center;
  }

  .valuation-form-section h2 {
    color: #1F83E6;
  }
  
  .valuation-form {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    width: 100%;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .form-group label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .form-group input {
    font-size: 1rem;
    padding: 0.5rem;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  button[type="submit"] {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: #1F83E6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
  }
  
  button[type="submit"]:hover {
    background-color: #77b3f0;
    font-family: 'Poppins', sans-serif;
  }

  .valuation-card {
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 1rem;
    margin: 3rem;
    flex-basis: calc(33% - 1rem);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    background-color: #ffffff;
  }
  
  @media screen and (max-width: 768px) {
    .property-card,
    .service-card, 
    .agent-card, 
    .valuation-card {
      background-color: #ffffff;
      border-radius: 5px;
      padding: 1rem;
      margin: 0.5rem;
      flex-basis: calc(50% - 1rem);
    }
  }
  
  @media screen and (max-width: 480px) {
    .property-card,
    .service-card,
    .valuation-card {
      flex-basis: 100%;
    }
  }
header {
    background-color: #ffffff;
    padding: 1rem 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}
  
.nav-links li {
    margin-left: 2rem;
}
  
.nav-links a {
    color: #333333;
    transition: color 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
  
.nav-links a:hover {
    color: #1F83E6;
}

@media screen and (max-width: 768px) {

    nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        list-style: none;
        display: flex;
        flex-direction: column; /* Change to a column layout for mobile */
        align-items: flex-start; /* Left-align the links for mobile */
        margin-top: 20px;
    }

    .nav-links a {
        text-decoration: underline;
        text-decoration-color: #1F83E6;
        font-size: 18pt;
    }

    .nav-links li {
        margin-left: 0; /* Remove the margin for mobile */
        margin-bottom: 1rem; /* Add bottom margin for spacing between links */
    }
}
.hero {
    background-image: url('images/hero_small.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
  }
  
  .hero .text-container {
    padding: 2rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    text-shadow: 2px 2px 4px #000000;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
  }
  
  .hero p {
    font-size: 1.2rem;
    font-weight: 200;
  }

  @media screen and (max-width: 768px) {
    
    .hero .text-container {
      padding: 5px;
      color: white;
    }

    .hero h1 {
        font-size: 18pt;
        font-weight: 400;
      }
      
      .hero p {
        font-size: 12pt;
        font-weight: 200;
      }

    .hero {
        height: 30vh;
      }
}
.footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .footer-link {
    margin: 0 1rem;
  }
  
  .footer-link h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-link ul {
    list-style: none;
  }
  
  .footer-link a {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .footer-link a:hover {
    color: #1F83E6;
  }

  .footer-link.about-us, 
  .footer-link.contact {
  padding: 0 20px;
}

p.copyright {
    padding-bottom: 20px;
    text-align: center;
  }

  @media screen and (max-width: 768px) {
    .footer-links {
      flex-direction: column;
    }
  
    .footer-link {
      margin: 1rem 0;
    }
  }
.logo-container {
    width: 116px; /* Set the width of the container */
    height: 48px; /* Set the height of the container */
    display: flex; /* Use flexbox for centering */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

/* CSS for the logo image */
.logo-image {
    max-width: 100%; /* Ensure the image fits within the container */
    max-height: 100%; /* Ensure the image fits within the container */
    user-select: none; /* Make the image non-selectable */
}