html, body {
  max-width: 100%;
  overflow-x: hidden;
}
/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
}

h1, h2, h3, h4 {
  font-weight: bold;
  margin-bottom: 1rem;
}

a {
  color: #0044cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top Black Banner */
.top-black-banner {
  background-color: #000;
  color: #fff;
  padding: 1.25rem 1rem;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.banner-left img.logo-img {
  height: 90px;
  width: auto;
  display: block;
}

.banner-center {
  text-align: center;
  font-weight: bold;
}

.banner-center a,
.top-black-banner a {
  color: white;
  text-decoration: none;
  margin: 0 0.75rem;
  font-weight: bold;
  font-size: 0.95rem;
}

/* Top Black Banner */
.banner-right p {
  font-size: 1rem; /* Default size for text */
}

.banner-right .phone {
  font-size: 1.5rem; /* Larger font size for phone number */
  font-weight: bold;
}

.banner-right .email {
  font-size: 0.9rem; /* Smaller font size for email */
  font-weight: normal;
}

/* Navigation */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #d6c9a4;
  padding: 1rem 0;
}

@keyframes cps-header-twinkle {
  0% {
    opacity: 1;
    filter: brightness(1);
  }
  35% {
    opacity: 0.7;
    filter: brightness(1.15);
  }
  60% {
    opacity: 0.5;
    filter: brightness(1.25);
  }
  85% {
    opacity: 0.9;
    filter: brightness(1.1);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
  }
}

#holiday-overlay .christmas-lights,
#holiday-overlay .christmas-lights-vertical,
#holiday-overlay .top-lights,
#holiday-overlay .left-lights,
#holiday-overlay .right-lights {
  animation: cps-header-twinkle 2.4s ease-in-out infinite alternate;
}

.nav-wrapper {
  display: flex;
  justify-content: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  margin: 0;
}

.main-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  white-space: nowrap; /* Forces all menu text to stay on one line */
}

.main-nav ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  font-weight: normal;
  font-size: 0.9rem;
}
.main-nav .dropdown li::after {
  content: none !important;
}

/* Dropdown styles */
.has-dropdown {
  position: relative;
}

.main-nav .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0%;
  transform: none;
  min-width: 100%;
  background-color: #d6c9a4;
  padding: 0;
  z-index: 999;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.main-nav .dropdown li a {
  display: block;
  width: 100%;
  padding: 0.75rem 2rem 0.75rem 1.5rem; /* Top, Right, Bottom, Left */
  color: #000 !important;
  text-align: left;
  background-color: transparent;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
}



/* Resident Resources */

.resource-block {
  flex: 1 1 300px;
  max-width: 450px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-title {
  font-size: 2.75rem; /* or try 3rem or more */
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.resident-resources {
  padding: 4rem 1rem;
  background-color: #fff;
  text-align: center;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.resource-block {
  flex: 1 1 300px;
  max-width: 450px;
  text-align: center;
}

.resource-block h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.resource-block .subtitle {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.links-resources {
  text-align: center;
}

.links-resources h4 {
  font-size: 1.25rem;
  color: #b59b68;
  margin-bottom: 1rem;
}

.links-resources ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-resources li {
  margin-bottom: 0.5rem;
}

.links-resources a {
  color: #b59b68;
  text-decoration: none;
  font-weight: 500;
}

.links-resources a:hover {
  text-decoration: underline;
}




/* Dropdown link base style */


/* Dropdown hover effect */
.dropdown li a:hover {
  background-color: #d6c9a4;
  color: #000;
}

/* Main nav link styles remain */
.main-nav li a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  height: 600px;
}

.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-subheading {
  font-family: 'Arial', sans-serif;
  font-size: 1.15rem;
  color: #f1f1f1;
  max-width: 750px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.75rem 1.25rem;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 4px;
  font-family: 'Arial', sans-serif;
  box-shadow: none;
  text-shadow: none;
  transition: background-color 0.3s ease;
}

.cta-button.tan {
  background-color: #d6c9a4;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  font-family: 'Arial', sans-serif;
  transition: background-color 0.3s ease;
  box-shadow: none;
  text-shadow: none;
}

.cta-button.tan:hover {
  background-color: #c5b88f;
  color: #000;
}

/* Dark overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.529); /* Tinted overlay */
  z-index: 0;
}

/* Background Image */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Send image behind overlay */
}

/* Text container */
.hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Hero text styling */
.hero-content {
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

/* CTA button */
.cta-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.75rem 1.25rem;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

/* Why Choose Section */
.why-choose {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.why-choose-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.why-choose-image {
  flex: 1 1 50%;
  max-width: 50%;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.why-choose-content {
  flex: 1 1 50%;
  max-width: 50%;
  background-color: #d6c9a4;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose-content h2,
.why-choose-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.why-choose-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.why-choose-content p {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #111;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.quote-button {
  background: #fff;
  color: #000;
  padding: 0.85rem 1.5rem;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  width: fit-content;
  transition: background 0.3s;
}

.quote-button:hover {
  background: #222;
  color: #fff;
}

body {
  overflow-x: hidden;
}

/* Areas We Serve */
.areas-served {
  padding: 3rem 1rem;
  background-color: #f8f8f8;
  text-align: center;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.area-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}

.area-card h3 {
  margin-top: 0.5rem;
}

/* site-style Footer */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 1rem;
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}

.footer-column {
  flex: 1 1 180px;
}

.logo-column {
  flex: 1 1 250px;
}

.footer-logo {
  height: 70px;
  margin-bottom: 1rem;
}

.footer-column h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: #d6c9a4;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.footer-middle img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  color: #ccc;
  font-size: 0.85rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: underline;
}

/* Index Intro Text */
.intro-text p:first-of-type {
  margin-bottom: 2rem;
}

/* Fix card layout glitch (e.g., Royse City) */
.area-card {
  background-color: #fff;
  border-radius: 4px;
  padding-bottom: 1rem;
  transition: transform 0.2s;
}

.area-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

.area-card h3 {
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* Add fallback style if image is missing */
.area-card img:empty {
  background-color: #ccc;
  height: 150px;
  border-radius: 4px;
}

.logo-column {
  flex: 1 1 250px;
  margin-left: -4rem; /* Shift the logo + text to the left */
}

@media (max-width: 768px) {
  .logo-column {
    margin-right: 0; /* Reset spacing on mobile for better stacking */
  }
}
@media (max-width: 768px) {
  .logo-column {
    margin-left: 0;
  }
}
@media (max-width: 1024px) {
  .nav-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .nav-wrapper li {
    flex: 1 1 auto;
    text-align: center;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Ensure footer links inside logo-column stay white */
.logo-column a {
  color: #fff;
  text-decoration: none;
}

.logo-column a:hover {
  text-decoration: underline;
}

/* Intro Text Section */
.intro-text {
  padding: 2rem 1rem 1.5rem;
  background-color: #fff; /* Matches site background exactly */
  text-align: center;
}

.intro-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  color: #222;
  margin-bottom: 0.75rem;
}

.intro-text p {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Owner Image */
.owner-flex-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

    /* Rental Analysis Section */

.rental-analysis-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.analysis-text {
  flex: 1 1 60%;
}

.analysis-text ul {
  margin: 1rem 0 2rem 1.25rem;
  padding-left: 1rem;
}

.analysis-text li {
  margin-bottom: 0.5rem;
}

.analysis-form {
  flex: 1 1 45%;
  background-color: #000;
  padding: 2rem;
  color: #fff;
  border-radius: 6px;
  max-width: 360px;
}

.analysis-form input,
.analysis-form textarea {
  width: 100%;
  padding: 0.65rem;
  margin-bottom: 0.9rem;
  border: none;
  background-color: #d6c9a4;
  font-family: Arial, sans-serif;
}

.analysis-form label {
  display: block;
  margin-bottom: 6px;
}

.analysis-form button {
  background-color: #d6c9a4;
  border: none;
  padding: 0.65rem 1.25rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

/* Investors Rental Analysis Section */
.investor-form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
}

/* CTA Scroll Behavior */

html {
  scroll-behavior: smooth;
}

/* ============================
   Hero Animation: Slide In Right
============================ */

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.investor-section .container {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 2rem 1rem;
}

.investor-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.investor-section h3 {
  font-size: 1.25rem;
  color: #b59b68;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.investor-section ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  list-style-type: disc;
}

.investor-section ul li {
  margin-bottom: 0.75rem;
}

.investor-section p {
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Owners Resources */
.owner-resources {
  padding: 3rem 1rem;
  background-color: #fff;
}

.owner-resources-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}



.btn-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.owner-links,
.app-links {
  padding-left: 1.5rem;
  margin: 1rem 0 2rem;
  list-style-type: disc;
}

.owner-links li,
.app-links li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.app-links img {
  height: 40px;
  margin-top: 0.5rem;
}

/* Owners Resources Links */

.tan-links a {
  color: #b59b68;
  text-decoration: none;
}

.tan-links a:hover {
  text-decoration: underline;
}

.owner-flex-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

.owner-image {
  flex: 1 1 50%;
  max-width: 450px;
}

.owner-image img {
  width: 100%;
  border-radius: 6px;
}

.owner-resources-section {
  background-color: #fff;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.owner-resources-section h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  text-align: center;
  margin-bottom: 0.5rem;
}

.owner-resources-section h3 {
  font-size: 1.35rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 2rem;
  color: #111;
}

.owner-flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.owner-image {
  flex: 1 1 50%;
  max-width: 550px;
}

.owner-image img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.analysis-form {
  flex: 1 1 40%;
  background-color: #000;
  padding: 2rem 1.5rem;
  color: #fff;
  border-radius: 6px;
  max-width: 400px;
}

.analysis-form h4 {
  font-size: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: #d6c9a4;
  margin-bottom: 1.5rem;
  text-align: left;
}

.analysis-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.analysis-form input,
.analysis-form textarea {
  width: 100%;
  padding: 0.65rem;
  margin-bottom: 1rem;
  background-color: #d6c9a4;
  border: none;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.analysis-form button {
  background-color: #d6c9a4;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .owner-flex-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .analysis-form {
    width: 100%;
    max-width: 100%;
  }

  .owner-image {
    max-width: 100%;
  }
}
.owner-info-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #222;
}

.owner-left-column {
  flex: 1 1 55%;
  max-width: 600px;
}

.owner-info-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 1.75rem;
  color: #222;
  text-align: left;
}

.owner-left-content {
  flex: 1 1 55%;
  max-width: 600px;
}

.cta-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons .cta-button {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  background-color: #d6c9a4;
  color: #000;
  text-decoration: none;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
}

.cta-buttons .cta-button:hover {
  background-color: #c5b88f;
}

.owner-resources-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.owner-resources-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.owner-resources-header p {
  font-family: 'Arial', sans-serif;
  font-size: 1.35rem;
  color: #333;
  margin-top: 0;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .cta-button {
  font-size: 1.15rem;
  padding: 1rem 2rem;
  border-radius: 35px;
  font-weight: 600;
  background-color: #d6c9a4;
  color: #000;
  text-decoration: none;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
}

.cta-buttons .cta-button:hover {
  background-color: #c5b88f;
}

.owner-links-wrapper {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  color: #222;
  font-size: 1rem;
  line-height: 1.6;
}

.owner-links-wrapper {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
  color: #222;
  font-family: Arial, sans-serif;
}

.owner-links-wrapper h4,
.owner-links-wrapper .access-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}

.owner-links-wrapper ul {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.owner-links-wrapper ul li {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.owner-links-wrapper a {
  color: #b59b68;
  text-decoration: none;
}

.owner-links-wrapper a:hover {
  text-decoration: underline;
}

.owner-links-wrapper p,
.owner-links-wrapper li {
  font-size: 1.125rem;
  line-height: 1.6;
}

.owner-center-section {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #222;
}

.owner-center-section a {
  color: #b59b68;
  text-decoration: none;
  font-weight: bold;
}

.owner-center-section a:hover {
  text-decoration: underline;
}

.roi-section {
  background-color: #f8f8f8;
  padding: 4rem 1rem;
  text-align: center;
}

.roi-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 2rem;
}

.roi-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.results {
  margin-top: 2rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
}

.tan-bg {
  background-color: #d6c9a4;
  padding: 3rem 1rem;
}

.roi-container {
  max-width: 600px;
  margin: 0 auto;
}

html {
  scroll-behavior: smooth;
}
.investor-section .container {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  padding: 2rem 1rem;
}

.investor-section h2 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.investor-section h3 {
  font-size: 1.125rem;
  color: #b59b68;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.investor-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1.75rem;
  list-style-type: disc;
}

.investor-section ul li {
  margin-bottom: 0.5rem;
}

.investor-section p {
  margin-bottom: 1.25rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.investor-section a {
  color: #000;
  text-decoration: underline;
}


.faq-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.faq-subtitle {
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  color: #333;
  margin-top: 0;
}

.has-dropdown-wrapper {
  position: relative;
}

.has-dropdown-wrapper:hover .dropdown {
  display: block;
}

.has-dropdown-wrapper > a {
  display: inline-block;
}

.has-dropdown-wrapper .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #d6c9a4;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding-top: 8px;
  margin-top: -8px;
}

.has-dropdown-wrapper .dropdown li {
  padding: 0;
  margin: 0;
}

.has-dropdown-wrapper .dropdown li a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  font-size: 0.95rem;
  color: #000;
  text-align: left;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.has-dropdown-wrapper .dropdown li a:hover {
  background-color: #c5b88f;
}

/* Obligo Video */
.video-wrapper {
  text-align: center;
  margin: 2rem auto;
  max-width: 100%;
}

.video-wrapper h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.video-wrapper video {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 8px;
}


.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

a.tan-link {
  color: #b59b68;
  text-decoration: none;
  font-weight: bold;
}

a.tan-link:hover {
  color: #a48a54;
  text-decoration: underline;
}


#rental-form {
  scroll-margin-top: 120px; /* Adjust this based on your header height */
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-member .title {
  font-style: italic;
  margin-bottom: 8px;
}

.team-member a {
  color: #c1a365;
  font-weight: 500;
  text-decoration: none;
}

.avatar-initials {
  width: 150px;
  height: 150px;
  background-color: #ccc;
  border-radius: 50%;
  font-size: 36px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 12px;
  text-transform: uppercase;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
/* ========== Responsive Enhancements ========== */

/* Nav: Stack items on small screens */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .main-nav ul li:not(:last-child)::after {
    content: none; /* Remove vertical bar on mobile */
  }

  .banner-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-choose-wrapper {
    flex-direction: column;
  }

  .hero {
    height: auto;
  }

  .hero-image {
    height: auto;
    object-fit: cover;
  }

  .hero .container {
    flex-direction: column;
    padding: 2rem 1rem;
    height: auto;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .intro-text p {
    font-size: 1rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .quote-button,
  .cta-button {
    width: 100%;
    text-align: center;
  }

  .why-choose-image,
  .why-choose-content {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/* Mobile Hamburger Menu */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  cursor: pointer;
  margin-left: auto;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
.mobile-nav-toggle:focus,
.mobile-nav-toggle:active {
  outline: none;
  background: transparent;
  box-shadow: none;
}

/* Homepage video */

.mobile-nav-toggle span {
  height: 3px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
}

/* Responsive Nav for Mobile */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #d6c9a4;
    z-index: 999;
    padding: 1rem 0;
    text-align: center;
    list-style: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav li {
    margin: 0.5rem 0;
  }

  .main-nav li a {
    font-size: 1.1rem;
    font-weight: bold;
  }
}

/* ===== FINALIZED DESKTOP NAV STYLES ===== */
.main-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding-left: 0;
}

.main-nav li {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
}

.main-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

/* ===== FINALIZED MOBILE NAV STYLES ===== */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    cursor: pointer;
    margin-left: auto;
  }

  .mobile-nav-toggle span {
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 2px;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #d6c9a4;
    z-index: 999;
    padding: 1rem 0;
    text-align: center;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav li {
    margin: 0.5rem 0;
  }

  .main-nav li a {
    font-size: 1.1rem;
    font-weight: bold;
  }
}


/* Enhance Team Member Image Size */
.team-member img,
.avatar-initials {
  width: 200px;
  height: 200px;
  font-size: 42px;
  margin-bottom: 12px;
}

/* Optional: Add margin below grid for spacing above footer */
.team-grid-spacer {
  margin-bottom: 4rem;
}

/* Center and Enlarge "Meet the Team" Heading */
.team-heading {
  text-align: center;
  font-size: 2.75rem;
  font-family: 'Playfair Display', serif;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
.fancybox-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.bio-popup .bio-flex {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.bio-popup .bio-flex img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.bio-popup .bio-text {
  flex: 1;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .why-choose-wrapper {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .why-choose-image,
  .why-choose-content {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* FINAL FIX: Mobile stacking for Why Choose Cox */
@media (max-width: 768px) {
  .why-choose-wrapper {
    flex-direction: column !important;
    gap: 2rem;
    padding: 0 1rem;
  }

  .why-choose-image,
  .why-choose-content {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .why-choose-image img {
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  body {
    overflow-x: hidden;
  }
}

/* FINAL MOBILE FIXES */
@media (max-width: 768px) {
  .rental-analysis-section {
    flex-direction: column;
    align-items: center;
  }

  .analysis-text,
  .analysis-form {
    width: 100%;
    max-width: 100%;
  }

  .analysis-form {
    padding: 2rem 1rem;
  }

  .hero-heading {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }

  .faq-title {
    font-size: 1.75rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-button,
  .quote-button {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
  }
}
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    margin-left: auto;
    gap: 6px;
  }

  .mobile-nav-toggle span {
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 2px;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #d6c9a4;
    z-index: 999;
    padding: 1rem 0;
    text-align: center;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav li {
    margin: 0.5rem 0;
  }

  .main-nav li a {
    font-size: 1.1rem;
    font-weight: bold;
  }

  .nav-wrapper {
    justify-content: space-between;
    align-items: center;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .main-nav ul li:not(:last-child)::after {
    content: none;
  }
}
@media (max-width: 768px) {
  .why-choose-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .why-choose-image,
  .why-choose-content {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .why-choose-content {
    padding: 2rem 1rem;
    text-align: center;
  }

  .quote-button {
    margin: 1.5rem auto 0;
  }
}

@media (max-width: 768px) {
  .why-choose-wrapper {
    flex-direction: column !important;
    align-items: center;
  }

  .why-choose-image,
  .why-choose-content {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .why-choose-content {
    padding: 2rem 1rem !important;
    text-align: center;
  }

  .why-choose-content h2,
  .why-choose-content h3,
  .why-choose-content p {
    text-align: center;
  }

  .quote-button {
    margin: 1.5rem auto 0;
    display: block;
  }
}

/* Rental iframe sizing */
.rental-iframe {
  width: 100%;
  border: none;
  height: 2200px;
  overflow: auto;
}

@media (max-width: 768px) {
  .rental-iframe {
    height: 90vh;
    min-height: 1600px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* FINALIZED MOBILE NAV STYLES */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    margin-left: auto;
    gap: 6px;
  }

  .mobile-nav-toggle span {
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 2px;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #d6c9a4;
    z-index: 999;
    padding: 1rem 0;
    text-align: center;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav li {
    margin: 0.5rem 0;
  }

  .main-nav li a {
    font-size: 1.1rem;
    font-weight: bold;
  }

  .nav-wrapper {
    justify-content: space-between;
    align-items: center;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .main-nav ul li:not(:last-child)::after {
    content: none;
  }
}


@media (min-width: 769px) {
  .why-choose-wrapper {
    align-items: stretch;
  }

  .why-choose-image img {
    height: 100%;
    object-fit: cover;
  }
}
.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 40%;
  padding: 1rem;
  color: #222;
}

.contact-form {
  flex: 1 1 50%;
  background-color: #000;
  color: #d9c9a4;
  padding: 2rem;
  border-radius: 6px;
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.3rem;
  background-color: #d9c9a4;
  border: none;
  font-size: 1rem;
  color: #000;
}

.contact-form button {
  margin-top: 1.5rem;
  background-color: #d9c9a4;
  color: #000;
  padding: 0.8rem 1.5rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}
.investor-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.investor-text-content {
  flex: 1 1 55%;
  padding-right: 2rem; /* Ensures text doesn’t hug the edge */
  min-width: 300px;
}

.analysis-form {
  flex: 1 1 40%;
  min-width: 300px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid #9c814b;
  outline-offset: 4px;
}


.faq-header {
  background-color: #fff;
  padding: 4rem 1rem 2rem;
  text-align: center;
}
/* Accordion Container */
.launch-accordion {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  padding: 0;
  list-style: none;
}

/* Accordion Items */
.launch-accordion li {
  background-color: #d6c9a4;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  color: #000;
}

/* Accordion Item Hover */
.launch-accordion li:hover {
  background-color: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Accordion Question Text */
.launch-accordion li h4 {
  display: block;
  position: relative;
  padding-right: 3.5rem; /* Spacing for + or - */
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  word-break: break-word;
}

/* Plus/Minus Symbols */
.launch-accordion li::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  transition: transform 0.3s ease;
}

.launch-accordion li.open::after {
  content: "−";
}

/* Accordion Answers (Hidden by Default, Polished Version) */
.launch-accordion li div[itemprop="acceptedAnswer"] {
  display: none;
  margin-top: 1rem;
  font-size: 0.95rem; /* Slightly smaller text for answers */
  font-family: Arial, sans-serif;
  color: #333; /* Slightly softer than pure black */
  padding: 0 1rem 0.5rem; /* Padding sides + small bottom padding */
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.6; /* Softer spacing for reading */
}

/* Accordion Answers (Visible when Open) */
.launch-accordion li.open div[itemprop="acceptedAnswer"] {
  display: block;
}

.services-section {
  padding: 4rem 1rem;
  background-color: #fff;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.section-intro {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}



.service-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
  filter: brightness(0) saturate(100%) sepia(27%) hue-rotate(10deg) brightness(103%) contrast(90%);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #222;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
}

.service-card {
  background-color: #e6dcc2; /* Tan color */
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  text-align: left;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem 1rem;
    position: relative;
  }

  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .hero .container {
    z-index: 2;
    height: auto;
    padding: 0;
  }
}

.analysis-form h3 {
  color: #f8f4ed;  /* Light tan for contrast */
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  text-align: left;
  margin-bottom: 1.25rem;
}


.area-card h3 {
  text-align: center;
}

.owner-link {
  transition: color 0.3s, text-decoration 0.3s;
}

.owner-link:hover {
  color: #9c814b; /* or your brand accent color */
  text-decoration: underline;
  cursor: pointer;
}
.owner-heading-link {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.owner-heading-link:hover {
  color: #9c814b; /* adjust to match your brand accent */
  text-decoration: underline;
  cursor: pointer;
}

.listing-details p {
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 2rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px; /* Fully rounded look */
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #333;
}

.form-container {
  background-color: #000;
  color: #fff;
  padding: 2rem;
  border-radius: 6px;
}
.form-container h2 {
  font-family: 'Playfair Display', serif;
  color: #d6c9a4;
  text-align: center;
}
.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: none;
  background-color: #d6c9a4;
  color: #000;
}
.form-container .btn,
.form-container button[type="submit"] {
  background-color: #d6c9a4;
  color: #000;
  width: 100%;
  padding: 0.75rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}
body, p, li {
  font-family: 'Lato', sans-serif;
}
h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #9c814b;
}
.tips {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2rem;
}

.tips-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.tips-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.tips-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.buyer-section {
  padding: 4rem 2rem;
}

.buyer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.buyer-text {
  flex: 1 1 60%;
  min-width: 300px;
  max-width: 100%;
}

.buyer-form {
  flex: 1 1 35%;
  min-width: 280px;
  background-color: #000;
  color: #fff;
  padding: 2rem;
  border-radius: 6px;
}

.buyer-form h2 {
  font-family: 'Playfair Display', serif;
  color: #d6c9a4;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.buyer-form input,
.buyer-form select,
.buyer-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: #d6c9a4;
  border: none;
  font-size: 1rem;
  color: #000;
}

.buyer-form textarea {
  min-height: 100px;
}

.buyer-form button {
  width: 100%;
  background-color: #d6c9a4;
  color: #000;
  font-weight: bold;
  padding: 0.75rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.recaptcha-placeholder {
  background-color: #fff;
  color: #000;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.buyer-form input,
.buyer-form select,
.buyer-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  background-color: #d6c9a4;
  color: #000;
  border: none;
  font-size: 1rem;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .buyer-container {
    flex-direction: column;
  }

  .buyer-form,
  .buyer-text {
    width: 100%;
  }

  .buyer-form {
    margin-top: 2rem;
  }
}

.buyer-section {
  padding: 3rem 1rem;
  background-color: #fff;
}

.buyer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.buyer-text {
  flex: 1 1 58%;
  max-width: 700px;
}

.buyer-form {
  flex: 1 1 38%;
  max-width: 400px;
  background-color: #000;
  color: #fff;
  padding: 2rem;
  border-radius: 6px;
}

.buyer-form h2 {
  color: #d6c9a4;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.buyer-form input,
.buyer-form select,
.buyer-form textarea {
  width: 100%;
  padding: 0.65rem;
  margin-bottom: 1rem;
  border: none;
  background-color: #d6c9a4;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: #000;
}

.buyer-form button {
  width: 100%;
  background-color: #d6c9a4;
  color: #000;
  font-weight: bold;
  padding: 0.75rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.buyer-form .recaptcha-placeholder {
  background: #fff;
  color: #000;
  padding: 0.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .buyer-container {
    flex-direction: column;
    align-items: center;
  }

  .buyer-text,
  .buyer-form {
    max-width: 100%;
  }
}

/* Fixing heading style for 'Other things to consider...' */
.other-considerations h3 {
  color: #9c814b;
  font-size: 1.75rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: none; /* Make it sentence case */
}

/* Paragraph text improvements */
.other-considerations .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.other-considerations p,
.other-considerations li {
  font-size: 1.0625rem; /* 17px */
  line-height: 1.75;
  color: #222; /* matches screenshot */
}

.other-considerations ul {
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

/* Section spacing */
.other-considerations {
  padding: 2rem 1rem 3rem;
}

.tips-for-buying .tips {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.tips-image img {
  max-width: 450px;
  width: 100%;
  border-radius: 4px;
}
.tips-for-buying {
  padding: 4rem 0;
  background-color: #fff;
}

.tips-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}

.tips-text {
  flex: 1 1 50%;
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 600px;
}

.tips-text h4 {
  font-size: 1.25rem;
  margin-top: 2rem;
  font-weight: 600;
}

.tips-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.tips-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.section-title {
  color: #9c814b;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

html {
  scroll-behavior: smooth;
}
.blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.main-panel {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.side-panel {
  flex: 1;
  max-width: 300px;
}

.blog-post {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s ease;
}

.blog-post:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.post-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.post-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #333;
}

.post-date {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
}

.post-body {
  flex: 1;
  font-size: 0.95rem;
  color: #555;
}

.read-more {
  margin-top: 1rem;
  font-weight: 500;
  color: #8b6b37;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }

  .main-panel {
    grid-template-columns: 1fr;
  }

  .side-panel {
    max-width: 100%;
  }
}
.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.main-panel {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.side-panel {
  flex: 1;
  max-width: 300px;
}

.widget {
  margin-bottom: 2rem;
}

.widget h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.25rem;
}

.widget ul {
  padding-left: 1rem;
}

.widget ul li {
  margin-bottom: 0.5rem;
}

.widget ul li a {
  color: #444;
  text-decoration: none;
}

.widget ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }

  .main-panel {
    grid-template-columns: 1fr;
  }

  .side-panel {
    max-width: 100%;
  }
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-post {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-post .post-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-post .post-content {
  padding: 1.25rem;
}

.blog-post .post-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.blog-post .post-date {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.blog-post .post-body {
  font-size: 1rem;
  line-height: 1.6;
}

.blog-post .read-more {
  display: inline-block;
  margin-top: 1rem;
  color: #b59b68;
  font-weight: bold;
  text-decoration: none;
}

.blog-post .read-more:hover {
  text-decoration: underline;
}
.blog-post {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.blog-image img {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.blog-content {
  flex: 1;
}

.blog-content h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.blog-content .post-meta {
  font-size: 0.9rem;
  color: #666;
}
.blog-carousel-section {
  background: #f1e9d0;
  padding: 2rem;
  text-align: center;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 1rem auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.blog-card {
  min-width: 33.3333%;
  box-sizing: border-box;
  padding: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  margin: 0 0.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.blog-card p {
  font-size: 0.9rem;
  color: #444;
}

.carousel-btn {
  position: absolute;
  top: 45%;
  background: #000;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1;
  transform: translateY(-50%);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}
.blog-carousel-section {
  background: #f1e9d0;
  padding: 2rem;
  text-align: center;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 1rem auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.blog-card {
  min-width: 33.3333%;
  box-sizing: border-box;
  padding: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  margin: 0 0.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.blog-card p {
  font-size: 0.9rem;
  color: #444;
}

.carousel-btn {
  position: absolute;
  top: 45%;
  background: #000;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1;
  transform: translateY(-50%);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}


.leased-ribbon {
  position: absolute;
  top: 20px;
  left: -45px;
  background: black;
  color: white;
  padding: 8px 55px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  z-index: 5;
  text-transform: uppercase;
  pointer-events: none;
}

#rental-form{scroll-margin-top:120px;}#rental-form h2,#rental-form h3,#rental-form h4{margin-top:2.5rem;margin-bottom:.5rem;}#rental-form h2:first-child,#rental-form h3:first-child,#rental-form h4:first-child{margin-top:0;}#rental-form p{margin-top:0;margin-bottom:1.6rem;}#rental-form h2 + p,#rental-form h3 + p,#rental-form h4 + p{margin-top:.35rem;}#rental-form p + h2,#rental-form p + h3,#rental-form p + h4{margin-top:2.5rem;}main .content-block h2,main .content-block h3{margin-top:2rem;margin-bottom:.5rem;}main .content-block p,main .content-block ul{margin-top:0;}.content-block h2,.content-block h3,.content-block h4,.blog-post h2,.blog-post h3,.blog-post h4,.post-content h2,.post-content h3,.post-content h4,article h2,article h3,article h4{margin-top:2rem;margin-bottom:.5rem;}.content-block h2 + p,.content-block h3 + p,.content-block h4 + p,.blog-post h2 + p,.blog-post h3 + p,.blog-post h4 + p,.post-content h2 + p,.post-content h3 + p,.post-content h4 + p,article h2 + p,article h3 + p,article h4 + p{margin-top:0;}.content-block h2 + ul,.content-block h3 + ul,.content-block h4 + ul,.blog-post h2 + ul,.blog-post h3 + ul,.blog-post h4 + ul,.post-content h2 + ul,.post-content h3 + ul,.post-content h4 + ul,article h2 + ul,article h3 + ul,article h4 + ul{margin-top:.25rem;}
