body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .hero-section {
    padding: 20px 10px; /* Increased padding to ensure enough space */
    background-color: #fff;
    color: white;
    text-align: center; /* Center the text */
  }
  
  .hero-content h1 {
    font-size: 1.5em; /* Adjust font size for better readability */
    margin: 0;
  }
  
  .hero-content p {
    font-size: 1.2em;
    margin: 10px 0;
  }
  
 .top-bar {
    position: sticky; /* Make the header sticky */
  top: 0; /* Stick to the top of the viewport */
  z-index: 999; /* Ensure the header stays above other content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow for better visibility */
}

.logo img {
    max-width: 100px; /* Adjust the size of the image */
    height: auto;
}

.contact-info1 {
    display: flex;
    flex-direction: column; /* Stack the h1 and span vertically */
    align-items: center; /* Center the text horizontally */
    text-align: center; /* Center the text content */
    margin-left: 20px; /* Space between image and text */
}

.contact-info1 h1 {
    margin: 0; /* Remove default margin */
    font-size: 24px; /* Adjust the font size */
    font-weight: bold;
}

.contact-info1 span {
    font-size: 16px; /* Adjust the font size */
    margin-top: 5px; /* Space between h1 and span */
    color: #666; /* Adjust the color if needed */
}

  
  .cta-button {
    padding: 10px 20px;
    background-color: #174359;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1em;
  }
  
  .hero-image {
    max-width: 100%;
    border-radius: 10px;
    height: auto; /* Adjust height for responsive design */
  }
  
  .value-proposition {
    padding: 40px 20px;
    background-color: #e9e6ed;
  }
  
  .value-proposition-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
  }
  
  .value-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .value-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .for-sale-image {
  width: 100px; /* Adjust the size as needed */
  margin-top: 20px; /* Adjust spacing as needed */
}
  
  .value-image {
    max-width: 100px;
    height: auto;
    border-radius: 5px;
  }
  
  .value-item img {
  width: 100%; 
  height: auto; 
  object-fit: cover; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

  
  .value-text {
    max-width: calc(100% - 120px); 
  }
  
  .hidden {
    display: none;
  }
  
  .contact-form-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column; 
  }
  
  .contact-form div {
    margin-bottom: 15px; 
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 5px; 
    font-weight: bold;
  }
  
  .contact-form-container p {
  font-size: 1rem; 
  color: #5d3c81; 
  line-height: 1.5; 
  margin-bottom: 1.5rem; 
  text-align: center;  
  background-color: #e9e6ed;  
  padding: 1rem;  
  border-radius: 8px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}
  
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"] {
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; 
    font-size: 16px; 
    outline: none;
  }
  
  .contact-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/1x1/us.svg') no-repeat right center;
  background-size: 20px 15px;
  outline: none;
}

.contact-form option {
  padding-left: 25px; /* Adjust for flag width */
  background-repeat: no-repeat;
  background-position: left center;
}

.contact-form option[value="us"] {
  background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/1x1/us.svg');
}

.contact-form option[value="gb"] {
  background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/1x1/gb.svg');
}

.contact-form option[value="ca"] {
  background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/1x1/ca.svg');
}

 .country-option {
            display: flex;
            align-items: center;
        }
        .country-option .flag-icon {
            margin-right: 10px;
        }

/* Add more country-specific styles */

  
  .submit-button {
    background-color: #007bff; 
    color: #ffffff; 
    border: none; 
    border-radius: 5px; 
    padding: 15px 25px; 
    font-size: 16px; 
    font-weight: bold; 
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .submit-button:hover {
    background-color: #0056b3;
    transform: scale(1.05); 
  }
  
  .submit-button:active {
    background-color: #00408b; 
  }
  
  .submit-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(38, 143, 255, 0.5); 
  }
  
  .faq-section {
  padding: 40px;
  background-color: #f8f9fa;
  border-top: 2px solid #174359;
}

.faq-section h2 {
  text-align: center;
  color: #174359;
  margin-bottom: 20px;
  font-size: 2rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  color: #174359;
  font-size: 1.2rem;
  margin-bottom: 10px;
  cursor: pointer;
}

.faq-item p, .faq-item ol {
  font-size: 1rem;
  color: #333;
  padding-left: 20px;
  display: none;
}

.faq-item ol {
  list-style: decimal inside;
}

.faq-item ol li {
  margin-bottom: 5px;
}

/* Toggle the answer visibility */
.faq-item.active p, .faq-item.active ol {
  display: block;
}

/* Optional: Add an accordion-like effect */
.faq-item h3::after {
  content: "\002B";
  font-weight: bold;
  float: right;
}

.faq-item.active h3::after {
  content: "\2212";
}

/* Styling for mobile responsiveness */
@media (max-width: 768px) {
  .faq-section {
    padding: 20px;
  }
  
  .faq-section h2 {
    font-size: 1.8rem;
  }
  
  .faq-item h3 {
    font-size: 1rem;
  }
}

  
  #amount {
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    box-sizing: border-box;
    font-size: 16px; 
    background: #ffffff; 
  }
  
  .show-more-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #174359;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  .urgency {
    text-align: center;
    color: #333;
  }
  
  .urgency p, .urgency .cta-button {
    margin-top: 20px;
  }
  
  .testimonials .testimonial, .contact .contact-form, .contact .contact-info {
    max-width: 60%;
    margin: 0 auto 20px auto;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
  }
  
  .benefits ul {
    list-style: none;
    padding: 0;
    max-width: 60%;
    margin: 0 auto;
  }
  
  .benefits li {
    padding: 10px;
    background: #f5f5f5;
    margin: 10px 0;
    border-radius: 5px;
  }
  
  .benefits h2 {
    text-align: center;
    margin-top: 3rem;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input, .contact-form textarea {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
  }
  
  .contact-form button {
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1em;
  }
  
  .contact-info p {
    text-align: center;
  }
  
  .contact-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/1x1/us.svg') no-repeat right center;
  background-size: 20px 15px;
}

.contact-form option {
  padding-left: 25px; /* Adjust for flag width */
  background-repeat: no-repeat;
  background-position: left center;
}

.contact-form option[value="us"] {
  background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/1x1/us.svg');
}

.contact-form option[value="gb"] {
  background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/1x1/gb.svg');
}

.contact-form option[value="ca"] {
  background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/1x1/ca.svg');
}


  
  footer {
    background: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
  }
  
  .footer-links li {
    display: inline;
  }
  
  .footer-links a {
    color: white;
    text-decoration: none;
  }
  
  .social-media a {
    margin: 0 10px;
  }
  
  /* Media queries for responsive design */
  @media (max-width: 768px) {
    .hero-section {
      padding: 15px 10px;
    }
  
    .hero-content h1 {
      font-size: 1.2em;
      text-align: center;
    }
  
    .hero-content p {
      font-size: 1em;
    }
  
    .hero-image {
      max-width: 100%;
      height: auto;
    }
  
    .value-proposition-content {
      grid-template-columns: 1fr;
    }
  
    .value-items {
      gap: 15px;
    }
  
    .value-image {
      max-width: 80px;
    }
  
    .value-text {
      max-width: calc(100% - 90px);
    }
  
    .testimonials .testimonial, .contact .contact-form, .contact .contact-info {
      max-width: 90%;
      margin: 10px auto;
    }
  
    .benefits ul {
      max-width: 90%;
    }
  
    footer {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  
    .social-media {
      margin-top: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-section {
      padding: 10px;
    }
  
    .hero-content h1 {
      font-size: 1.5em;
      text-align: center;
    }
  
    .hero-content p {
      font-size: 0.9em;
    }
  
    .cta-button {
      padding: 8px 16px;
      font-size: 0.9em;
    }
  
    .value-items {
      gap: 10px;
    }
  
    .value-image {
      max-width: 60px;
    }
  
    .value-text {
      max-width: calc(100% - 70px);
    }
  
    .submit-button {
      padding: 10px 20px;
      font-size: 0.9em;
    }
  
    .show-more-button {
      padding: 8px 16px;
    }
  }
  