body {
    font-family: Arial, sans-serif;
    background-color: #e2f3df;
}

.hero-section {
    background-color: #ffffff;
    padding: 0px 0;
    background-image: url('background-image.jpg');
    background-size: cover;
    background-position: center;
}

.hero-section h3 {
    font-size: 25px;
    font-weight: bold;
    color: green;
}

.hero-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.hero-section p {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 20px;
}

.hero-buttons .btn-danger {
    margin-right: 10px;
    font-weight: bold;
}

.hero-buttons .btn-outline-success {
    font-weight: bold;
}
.featured-section {
    position: relative;
    background-size: cover; /* Ensures the image covers the section without stretching */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    height: 700px; /* Adjust height as needed */
    display: flex;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 50px 0;
    
}


.featured-content {
    margin-top: 0px;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: bold;
    font-weight: bold;
    color: #2c6a43;
    
}

.featured-content p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.featured-content a.btn-danger {
    font-weight: bold;
}
    .responsive-text {
  font-size: 2vw; /* Default font size based on viewport width */
}

/* For small devices (phones, less than 600px) */
@media (max-width: 600px) {
  .responsive-text {
    font-size: 14px; /* Minimum font size for small screens */
  }
}

/* For medium devices (tablets, 600px and up) */
@media (min-width: 600px) and (max-width: 1024px) {
  .responsive-text {
    font-size: 3vw; /* Adjust font size for medium screens */
  }
}

/* For large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .responsive-text {
    font-size: 1.5vw; /* Adjust font size for larger screens */
  }
}

/* Hide on small screens */
@media (max-width: 767.98px) {
    .d-none-sm {
        display: none !important;
    }
}
/* Properties Section */
.properties-section {
    background-color: transparent; /* Light grey background */
}

.property-card {
    border-radius: 10px;
    overflow: hidden;
}

.property-card img {
    height: 200px;
    object-fit: cover; /* Ensures images fill the card without stretching */
}

.property-card .card-body {
    padding: 5px;
}

.property-card .card-title {
    font-size: 13px;
    font-weight: bold;
}

.property-card .card-text {
    font-size: 13px;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    padding: 10px 20px;
    font-size: 1.25rem;
    border-radius: 10px;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}
.fw-bold {
    color: #2f4f4f;
}

.faq-section h2 {
    margin-bottom: 20px;
    color: #2f4f4f;
}

.accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #2f4f4f;
}

.accordion-button::after {
    filter: invert(27%) sepia(83%) saturate(5585%) hue-rotate(150deg) brightness(90%) contrast(86%);
}
.property-section {
    background-color: #e8f0e8;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-body .card-title {
    font-weight: 700;
    color: #2f4f4f;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.list-unstyled li {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.text-warning i {
    font-size: 1.2rem;
}
.contact-section {
    background-color: #0c633e;
    border-radius: 10px;
    padding: 20px;
}

.contact-section h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.form-control {
    background-color: #e0e8e0;
    border: none;
    border-radius: 5px;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.footer-section {
    background-color: #2c2c2c;
}

.footer-section h6 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section a {
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffc107;
}

.list-unstyled li {
    font-size: 0.9rem;
    margin-bottom: 5px;
}