  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  :root {
      --primary: #b83232;
      --secondary: #7a1e1e;
      --accent: #f2a65a;
      --cream: #f8f2ed;
      --beige: #ead9d3;
      --text-dark: #2e1f1f;
      --text-light: #8a7171;
      --white: #ffffff;
      --shadow: rgba(184, 50, 50, 0.12);


  }

  body {
      font-family: 'Georgia', serif;
      background: var(--cream);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
  }

  /* Header */
  header {
      background: var(--white);
      box-shadow: 0 2px 20px var(--shadow);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
  }

  nav {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      font-size: 2rem;
      font-weight: bold;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .logo::before {
      content: '🏡';
      font-size: 1.8rem;
  }

  .nav-links {
      display: flex;
      gap: 3rem;
      list-style: none;
  }

  .nav-links a {
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 500;
      font-size: 1.1rem;
      transition: color 0.3s;
      position: relative;
  }

  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s;
  }

  .nav-links a:hover {
      color: var(--primary);
  }

  .nav-links a:hover::after {
      width: 100%;
  }

  .cta-button {
      background: var(--accent);
      color: var(--white);
      padding: 1rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
  }

  .cta-button:hover {
      background: #d35400;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
  }

  /* Hero */
  .hero {
      margin-top: 90px;
      min-height: 100vh;
      background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%232c5aa0" fill-opacity="0.05" x="0" y="0" width="25" height="25"/><rect fill="%232c5aa0" fill-opacity="0.05" x="50" y="50" width="25" height="25"/></svg>');
      background-size: 100px 100px;
  }

  .hero-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  .hero h1 {
      font-size: 3.5rem;
      font-weight: bold;
      line-height: 1.2;
      margin-bottom: 2rem;
      color: var(--text-dark);
  }

  .hero h1 span {
      color: var(--primary);
  }

  .hero p {
      font-size: 1.3rem;
      color: var(--text-light);
      margin-bottom: 3rem;
      line-height: 1.8;
  }

  .property-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
  }

  .stat-box {
      background: var(--white);
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 20px var(--shadow);
      transition: all 0.3s;
  }

  .stat-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px var(--shadow);
  }

  .stat-value {
      font-size: 2rem;
      color: var(--primary);
      font-weight: bold;
      margin-bottom: 0.5rem;
  }

  .stat-label {
      font-size: 1rem;
      color: var(--text-light);
  }

  .hero-image {
      position: relative;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .house-icon {
      font-size: 12rem;
      color: var(--primary);
      opacity: 0.1;
      animation: float 6s ease-in-out infinite;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-20px);
      }
  }

  /* Sections */
  section {
      padding: 6rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
  }

  .section-title {
      font-size: 3rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 4rem;
      color: var(--text-dark);
      position: relative;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background: var(--accent);
  }

  /* About */
  .about {
      background: var(--white);
      border-radius: 15px;
      margin: 2rem auto;
      padding: 4rem;
      box-shadow: 0 10px 40px var(--shadow);
  }

  .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  .about-text {
      font-size: 1.2rem;
      line-height: 1.8;
      color: var(--text-light);
  }

  .about-text p {
      margin-bottom: 1.5rem;
  }

  .about-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
  }

  .feature-point {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      background: var(--cream);
      border-radius: 8px;
  }

  .feature-point::before {
      content: '✓';
      width: 30px;
      height: 30px;
      background: var(--primary);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
  }

  /* Services */
  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
  }

  .service-card {
      background: var(--white);
      padding: 3rem;
      border-radius: 15px;
      box-shadow: 0 5px 20px var(--shadow);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
  }

  .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--accent);
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px var(--shadow);
  }

  .service-icon {
      width: 80px;
      height: 80px;
      background: var(--cream);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--primary);
  }

  /* Why Choose Us */
  .features {
      background: var(--white);
      border-radius: 15px;
      margin: 2rem auto;
      padding: 4rem;
      box-shadow: 0 10px 40px var(--shadow);
  }

  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
  }

  .feature-item {
      text-align: center;
      padding: 2rem;
      background: var(--cream);
      border-radius: 15px;
      transition: all 0.3s;
  }

  .feature-item:hover {
      transform: scale(1.05);
      background: var(--beige);
  }

  .feature-icon {
      width: 100px;
      height: 100px;
      margin: 0 auto 2rem;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 3rem;
  }

  /* FAQ */
  .faq-container {
      max-width: 900px;
      margin: 0 auto;
  }

  .faq-item {
      background: var(--white);
      margin-bottom: 1.5rem;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 3px 15px var(--shadow);
  }

  .faq-question {
      padding: 2rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text-dark);
      transition: background 0.3s;
  }

  .faq-question:hover {
      background: var(--cream);
  }

  .faq-answer {
      padding: 0 2rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s, padding 0.3s;
      color: var(--text-light);
      line-height: 1.8;
  }

  .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 0 2rem 2rem;
  }

  /* Contact */
  .contact {
      background: var(--white);
      border-radius: 15px;
      margin: 2rem auto;
      padding: 4rem;
      box-shadow: 0 10px 40px var(--shadow);
  }

  .contact-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
  }

  .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
  }

  .contact-item {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1.5rem;
      background: var(--cream);
      border-radius: 10px;
      transition: all 0.3s;
  }

  .contact-item:hover {
      transform: translateX(10px);
      background: var(--beige);
  }

  .contact-icon {
      width: 60px;
      height: 60px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.5rem;
  }

  /* Testimonials */
  .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 2rem;
  }

  .testimonial-card {
      background: var(--white);
      padding: 3rem;
      border-radius: 15px;
      box-shadow: 0 5px 20px var(--shadow);
      position: relative;
      transition: all 0.3s;
  }

  .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px var(--shadow);
  }

  .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 1rem;
      left: 2rem;
      font-size: 4rem;
      color: var(--primary);
      opacity: 0.2;
  }

  .testimonial-text {
      font-style: italic;
      margin-bottom: 2rem;
      color: var(--text-light);
      line-height: 1.8;
      font-size: 1.1rem;
  }

  .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
  }

  .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: bold;
      font-size: 1.2rem;
  }

  /* Newsletter */
  .newsletter {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      padding: 4rem;
      border-radius: 15px;
      margin: 2rem auto;
      position: relative;
      overflow: hidden;
  }

  .newsletter::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      border-radius: 50%;
  }

  .newsletter-form {
      max-width: 600px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }

  .form-group {
      display: flex;
      flex-direction: column;
  }

  .form-group label {
      margin-bottom: 0.5rem;
      font-weight: 600;
      font-size: 1.1rem;
  }

  .form-group input {
      padding: 1rem;
      background: rgba(255, 255, 255, 0.95);
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      color: var(--text-dark);
      transition: all 0.3s;
  }

  .form-group input:focus {
      outline: none;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
      transform: scale(1.02);
  }

  .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin: 1rem 0;
  }

  .checkbox-group input[type="checkbox"] {
      width: 20px;
      height: 20px;
      margin-top: 0.25rem;
      accent-color: var(--white);
  }

  .checkbox-group label {
      font-size: 1rem;
  }

  .submit-btn {
      background: var(--accent);
      color: var(--white);
      padding: 1.25rem 2rem;
      border: none;
      border-radius: 8px;
      font-size: 1.2rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3);
  }

  .submit-btn:hover {
      background: #d35400;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
  }

  .confirmation-message {
      display: none;
      background: var(--accent);
      color: var(--white);
      padding: 1.5rem;
      border-radius: 8px;
      margin-top: 1rem;
      text-align: center;
      font-weight: 600;
      animation: slideIn 0.5s ease;
  }

  @keyframes slideIn {
      from {
          opacity: 0;
          transform: translateY(-20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Footer */
  footer {
      background: var(--text-dark);
      color: var(--white);
      padding: 3rem 2rem 1.5rem;
      margin-top: 4rem;
  }

  .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 2rem;
  }

  .footer-section h3 {
      margin-bottom: 1.5rem;
      color: var(--accent);
      font-size: 1.2rem;
  }

  .footer-links {
      list-style: none;
  }

  .footer-links li {
      margin-bottom: 0.75rem;
  }

  .footer-links a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
  }

  .footer-links a:hover {
      color: var(--accent);
  }

  .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #34495e;
      color: #95a5a6;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .nav-links {
          display: none;
      }

      .hero-content {
          grid-template-columns: 1fr;
      }

      .hero h1 {
          font-size: 2.5rem;
      }

      .about-content,
      .contact-content {
          grid-template-columns: 1fr;
      }
  }

  /* Modal Background */
  .modal {
      display: none;
      /* Hidden by default */
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.6);
      /* Semi-transparent background */
  }

  /* Modal Content Box */
  .modal-content {
      background-color: #000;
      margin: 10% auto;
      padding: 20px;
      border-radius: 8px;
      width: 80%;
      max-width: 600px;
      position: relative;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      animation: slideDown 0.4s ease;
  }

  /* Slide Down Animation */
  @keyframes slideDown {
      from {
          transform: translateY(-50px);
          opacity: 0;
      }

      to {
          transform: translateY(0);
          opacity: 1;
      }
  }

  /* Close Button */
  .close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
  }

  .close:hover {
      color: #000;

  }

  h2 {
      margin-top: 0;

  }

  p {
      line-height: 1.6;

  }