* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      overflow-x: hidden;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  /* Header */
  header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 0;
      transition: all 0.3s ease;
  }

  .header-scrolled {
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

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

  .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #2c5aa0;
  }

  .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
  }

  .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
  }

  .nav-links a:hover {
      color: #2c5aa0;
  }

  .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #2c5aa0;
      transition: width 0.3s ease;
  }

  .nav-links a:hover::after {
      width: 100%;
  }

  .cta-btn {
      background: #2c5aa0;
      color: white;
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      transition: all 0.3s ease;
      font-weight: 500;
  }

  .cta-btn:hover {
      background: #1e3f73;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
  }

  /* Hero Section */
  .hero {
      height: 100vh;
      background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                  url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2075&q=80') center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
  }

  .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
  }

  .hero-content p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeInUp 1s ease 0.3s forwards;
  }

  .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      opacity: 0;
      animation: fadeInUp 1s ease 0.6s forwards;
  }

  .btn-primary {
      background: #2c5aa0;
      color: white;
      padding: 1rem 2rem;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .btn-secondary {
      background: transparent;
      color: white;
      padding: 1rem 2rem;
      text-decoration: none;
      border: 2px solid white;
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .btn-primary:hover {
      background: #1e3f73;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(44, 90, 160, 0.4);
  }

  .btn-secondary:hover {
      background: white;
      color: #333;
      transform: translateY(-3px);
  }

  /* Features Section */
  .features {
      padding: 6rem 0;
      background: #f8f9fa;
  }

  .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: #333;
  }

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

  .feature-card {
      background: white;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      cursor: pointer;
  }

  .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .feature-icon {
      font-size: 3rem;
      color: #2c5aa0;
      margin-bottom: 1rem;
  }

  .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #333;
  }

  .feature-card p {
      color: #666;
      line-height: 1.8;
  }

  /* Properties Section */
  .properties {
      padding: 6rem 0;
  }

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

  .property-card {
      background: white;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      cursor: pointer;
  }

  .property-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .property-image {
      height: 250px;
      background-size: cover;
      background-position: center;
      position: relative;
  }

  .property-price {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #2c5aa0;
      color: white;
      padding: 0.5rem 1rem;
      font-weight: bold;
  }

  .property-info {
      padding: 1.5rem;
  }

  .property-title {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: #333;
  }

  .property-location {
      color: #666;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .property-features {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
  }

  .property-feature {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      color: #666;
  }

  /* Stats Section */
  .stats {
      background: #2c5aa0;
      color: white;
      padding: 4rem 0;
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      text-align: center;
  }

  .stat-item h3 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
  }

  .stat-item p {
      font-size: 1.2rem;
      opacity: 0.9;
  }

  /* Contact Section */
  .contact {
      padding: 6rem 0;
      background: #f8f9fa;
  }

  .contact-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-top: 3rem;
  }

  .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
  }

  .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem;
      background: white;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .contact-icon {
      font-size: 1.5rem;
      color: #2c5aa0;
  }

  .contact-form {
      background: white;
      padding: 2rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

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

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

  .form-group input,
  .form-group textarea {
      width: 100%;
      padding: 0.8rem;
      border: 2px solid #e9ecef;
      font-size: 1rem;
      transition: border-color 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: #2c5aa0;
  }

  .form-group textarea {
      resize: vertical;
      height: 120px;
  }

  .submit-btn {
      background: #2c5aa0;
      color: white;
      padding: 1rem 2rem;
      border: none;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
  }

  .submit-btn:hover {
      background: #1e3f73;
      transform: translateY(-2px);
  }

  /* Footer */
  footer {
      background: #1a1a1a;
      color: white;
      padding: 3rem 0 1rem;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
  }

  .footer-section h3 {
      margin-bottom: 1rem;
      color: #2c5aa0;
  }

  .footer-section p,
  .footer-section a {
      color: #ccc;
      text-decoration: none;
      line-height: 1.8;
  }

  .footer-section a:hover {
      color: #2c5aa0;
  }

  .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
  }

  .social-links a {
      display: inline-block;
      width: 40px;
      height: 40px;
      background: #2c5aa0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
  }

  .social-links a:hover {
      background: #1e3f73;
      transform: translateY(-3px);
  }

  .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #333;
      color: #999;
  }

  /* Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
  }

  .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
  }

  /* Mobile Menu */
  .mobile-menu-btn {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
  }

  .mobile-menu-btn span {
      width: 25px;
      height: 3px;
      background: #333;
      transition: all 0.3s ease;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .mobile-menu-btn {
          display: flex;
      }

      .nav-links {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background: white;
          flex-direction: column;
          padding: 1rem;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .nav-links.active {
          display: flex;
      }

      .hero-content h1 {
          font-size: 2.5rem;
      }

      .hero-buttons {
          flex-direction: column;
          gap: 1rem;
      }

      .contact-content {
          grid-template-columns: 1fr;
          gap: 2rem;
      }

      .footer-content {
          grid-template-columns: 1fr;
          text-align: center;
      }
  }