/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f6f8f5;
  color: #222;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
body::-webkit-scrollbar {
  display: none;
}

/* Header */
.main-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.10);
  box-shadow: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem 1rem 3rem;
}
.logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: khaki;
  letter-spacing: 1px;
}
.nav-links a {
  margin: 0 1.2rem;
  text-decoration: none;
  color: khaki;
  font-size: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a.active, .nav-links a:hover {
  background: #e6f4e6;
  color: #3a5d3a;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-btn {
  background: #f0f0f0;
  border: none;
  border-radius: 20px;
  padding: 0.4rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
}
.signup-btn {
  background: #b6e388;
  color: #222;
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.signup-btn:hover {
  background: #a0d468;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 3rem 3rem 3rem;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.85);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 4;
  margin-bottom: 2.5rem;
  color: #fff;
}
.property-tags {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.property-tags span {
  background: #fff;
  color: #3a5d3a;
  border-radius: 20px;
  padding: 0.3rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(60,90,60,0.07);
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}
.tagline {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Search Bar */
.search-bar {
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(60,90,60,0.10);
  padding: 2rem 2.5rem 1.2rem 2.5rem;
  width: 100%;
  max-width: 900px;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.search-fields {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.search-fields input, .search-fields select {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  min-width: 140px;
  background: #f8f8f8;
  outline: none;
  transition: border 0.2s;
}
.search-fields input:focus, .search-fields select:focus {
  border: 1.5px solid #b6e388;
}
.search-btn {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.search-btn:hover {
  background: #3a5d3a;
}
.search-filters {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.search-filters span {
  color: #888;
  font-size: 1rem;
}
.search-filters button {
  background: #f0f0f0;
  border: none;
  border-radius: 16px;
  padding: 0.3rem 1rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.search-filters button:hover {
  background: #e6f4e6;
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 10;
}
.hamburger span {
  height: 4px;
  width: 100%;
  background: khaki;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.about-section {
  width: 100%;
  background: #f6f8f5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0 4rem 0;
}
.about-container {
  background: rgba(255,255,255,0.85);
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(60,90,60,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 950px;
  width: 95%;
  gap: 2.5rem;
  padding: 2.5rem 2.5rem 2.5rem 2rem;
}
.about-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(60,90,60,0.10);
}
.about-content {
  flex: 1;
}
.about-content h2 {
  font-size: 2rem;
  color: khaki;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.about-content p {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.7;
  opacity: 0.95;
}
.property-listing-section {
  width: 100%;
  background: #f6f8f5;
  padding: 3rem 0 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.property-listing-header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.property-listing-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}
.property-listing-header p {
  font-size: 1.1rem;
  color: #444;
  opacity: 0.85;
}
.see-all-btn {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 0.7rem 1.7rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(60,90,60,0.07);
  display: inline-block;
  margin-top: 0.5rem;
}
.see-all-btn:hover {
  background: #3a5d3a;
}
.property-grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}
.property-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(60,90,60,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.property-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(60,90,60,0.13);
}
.property-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.property-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #fff;
  color: #3a5d3a;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 16px;
  padding: 0.3rem 1.1rem;
  box-shadow: 0 2px 8px rgba(60,90,60,0.07);
}
.property-info {
  padding: 1.2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.property-features {
  color: #666;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}
.property-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #222;
  margin: 0.2rem 0 0.1rem 0;
}
.property-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.property-price {
  color: #3a5d3a;
  font-size: 1.1rem;
  font-weight: 600;
}
.property-address {
  color: #888;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .mobile-only {
    display: none !important;
  }
  .main-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1rem 0.5rem 1rem;
    position: absolute;
    background: rgba(34,34,34,0.15);
    z-index: 10;
  }
  .logo {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
  .header-actions {
    display: none;
  }
  .hamburger {
    display: flex;
    position: static;
    margin-left: auto;
  }
  .nav-links {
    position: fixed;
    top: 0; right: -100vw;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(34,34,34,0.97);
    box-shadow: -2px 0 16px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 20;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    color: khaki;
    font-size: 1.2rem;
    padding: 0.7rem 0;
    width: 100%;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .nav-links a.active, .nav-links a:hover {
    background: rgba(255,255,255,0.08);
    color: khaki;
  }
  .hero {
    padding: 0 1rem 1.5rem 1rem;
    min-height: 70vh;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }
  .hero-content {
    width: 100%;
    text-align: center;
    margin-bottom: 1.2rem;
  }
  .property-tags {
    display: none;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .search-bar {
    max-width: 100%;
    padding: 1.2rem 0.5rem;
    margin: 0 auto;
  }
  .search-fields {
    flex-direction: column;
    gap: 0.7rem;
  }
  .search-fields input, .search-fields select {
    min-width: 100%;
    font-size: 1rem;
  }
  .search-btn {
    width: 100%;
    padding: 0.7rem 0;
  }
  .search-filters {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .about-container {
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 0.7rem;
    gap: 1.2rem;
  }
  .about-image img {
    width: 100%;
    max-width: 320px;
    height: 180px;
    border-radius: 16px;
  }
  .about-content h2 {
    font-size: 1.3rem;
  }
  .about-content p {
    font-size: 1rem;
  }
  .property-listing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .property-listing-header h2 {
    font-size: 1.3rem;
  }
  .property-listing-header p {
    font-size: 1rem;
  }
  .see-all-btn {
    width: 100%;
    text-align: center;
    margin-top: 0.7rem;
  }
  .property-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .property-card {
    border-radius: 16px;
  }
  .property-img-wrap {
    border-radius: 0;
  }
  .property-info {
    padding: 1rem 0.7rem 1.2rem 0.7rem;
  }
}
.feature-hero-section {
  width: 100%;
  background: #fff;
  padding: 3.5rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-hero-grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.feature-hero-left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.feature-hero-mainimg-wrap {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: #f6f8f5;
}
.feature-hero-mainimg {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.feature-hero-avatars {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  gap: 0.5rem;
}
.feature-hero-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(60,90,60,0.10);
}
.feature-hero-desc {
  font-size: 1.1rem;
  color: #444;
  opacity: 0.85;
  margin-top: 0.7rem;
}
.feature-hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.feature-hero-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #f6f8f5;
  border-radius: 18px;
  padding: 0.5rem 1.1rem;
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(60,90,60,0.07);
}
.feature-hero-badge img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}
.feature-hero-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(60,90,60,0.07);
  padding: 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}
.feature-hero-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
}
.feature-hero-card p {
  font-size: 1rem;
  color: #444;
  opacity: 0.9;
}
.feature-hero-details-btn {
  background: #fff;
  color: #222;
  border: 1.5px solid #222;
  border-radius: 22px;
  padding: 0.5rem 1.3rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.feature-hero-details-btn:hover {
  background: #222;
  color: #fff;
}
.feature-hero-pricecard {
  flex-direction: row;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.1rem;
}
.feature-hero-priceimg {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  object-fit: cover;
}
.feature-hero-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}
.feature-hero-explore-btn {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 0.5rem 1.3rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.feature-hero-explore-btn:hover {
  background: #3a5d3a;
}
.feature-hero-stats {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  background: #f6f8f5;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(60,90,60,0.07);
  text-align: center;
}
.feature-hero-stats span {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}
.feature-hero-stats div {
  font-size: 1.1rem;
  color: #444;
  opacity: 0.9;
}
@media (max-width: 900px) {
  .feature-hero-section {
    padding: 2rem 0 1.2rem 0;
  }
  .feature-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature-hero-left h1 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .feature-hero-mainimg {
    height: 180px;
    border-radius: 16px;
  }
  .feature-hero-mainimg-wrap {
    border-radius: 16px;
  }
  .feature-hero-avatars img {
    width: 32px;
    height: 32px;
  }
  .feature-hero-right {
    gap: 0.7rem;
  }
  .feature-hero-badge {
    font-size: 0.95rem;
    padding: 0.4rem 0.7rem;
    border-radius: 12px;
  }
  .feature-hero-badge img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .feature-hero-card {
    border-radius: 12px;
    padding: 1rem 0.7rem;
  }
  .feature-hero-pricecard {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.7rem 0.7rem;
  }
  .feature-hero-priceimg {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }
  .feature-hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    padding: 1.2rem 0.5rem;
    border-radius: 12px;
    margin-top: 1.2rem;
  }
  .feature-hero-stats span {
    font-size: 1.2rem;
  }
  .feature-hero-stats div {
    font-size: 0.98rem;
  }
}
.testimonial-section {
  width: 100%;
  background: #fff;
  padding: 3.5rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-header {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.testimonial-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}
.testimonial-avatars {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.05rem;
  color: #222;
}
.testimonial-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(60,90,60,0.10);
  margin-right: -10px;
}
.testimonial-avatars span {
  margin-left: 1.2rem;
  font-size: 1.05rem;
  color: #222;
  opacity: 0.9;
  line-height: 1.2;
}
.testimonial-avatars b {
  font-weight: 700;
  color: #222;
}
.testimonial-carousel {
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto 1.2rem auto;
}
.testimonial-arrow {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border 0.2s;
}
.testimonial-arrow:hover {
  background: #f6f8f5;
  border: 1.5px solid #b6e388;
}
.testimonial-slide {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  background: none;
}
.testimonial-img-wrap {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  overflow: hidden;
  background: #f6f8f5;
}
.testimonial-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.testimonial-quote-wrap {
  background: #f8f8f8;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(60,90,60,0.07);
  padding: 2.2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 340px;
  max-width: 500px;
}
.testimonial-quote-mark {
  font-size: 2.2rem;
  color: #8fd16a;
  margin-bottom: 0.5rem;
}
.testimonial-quote-wrap blockquote {
  font-size: 1.25rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-style: italic;
  border: none;
  background: none;
}
.testimonial-author {
  margin-top: auto;
}
.testimonial-author-name {
  font-weight: 700;
  color: #222;
  font-size: 1.1rem;
}
.testimonial-author-role {
  color: #888;
  font-size: 1rem;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  display: inline-block;
  transition: background 0.2s;
}
.testimonial-dot.active {
  background: #8fd16a;
}
@media (max-width: 900px) {
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .testimonial-header h2 {
    font-size: 1.3rem;
  }
  .testimonial-avatars span {
    font-size: 0.98rem;
  }
  .testimonial-carousel {
    gap: 0.7rem;
  }
  .testimonial-slide {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .testimonial-img-wrap {
    flex: 0 0 100px;
    border-radius: 16px;
  }
  .testimonial-img-wrap img {
    height: 180px;
    border-radius: 16px;
  }
  .testimonial-quote-wrap {
    border-radius: 16px;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    min-width: 0;
    max-width: 100vw;
  }
  .testimonial-quote-mark {
    font-size: 1.3rem;
  }
  .testimonial-quote-wrap blockquote {
    font-size: 1rem;
  }
  .testimonial-author-name {
    font-size: 1rem;
  }
  .testimonial-author-role {
    font-size: 0.95rem;
  }
  .testimonial-dot {
    width: 9px;
    height: 9px;
  }
}
/* Contact Section */
.contact-section {
  width: 100%;
  background: #f6f8f5;
  padding: 3rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-container {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(60,90,60,0.08);
  max-width: 600px;
  width: 95%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.contact-container h2 {
  font-size: 2rem;
  color: khaki;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-container p {
  color: #444;
  font-size: 1.1rem;
  opacity: 0.9;
  text-align: center;
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  background: #f8f8f8;
  outline: none;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #b6e388;
}
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-form button {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #3a5d3a;
}

/* Footer */
.site-footer {
  width: 100%;
  background: #f6f8f5;
  padding: 2rem 0 1.2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1.5px solid #e0e0e0;
  margin-top: 2rem;
}
.footer-content {
  max-width: 1200px;
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: khaki;
  letter-spacing: 1px;
}
.footer-links {
  display: flex;
  gap: 1.2rem;
  margin: 0.5rem 0;
}
.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #3a5d3a;
}
.footer-copy {
  color: #aaa;
  font-size: 0.98rem;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .contact-container {
    padding: 1.2rem 0.7rem;
    border-radius: 16px;
  }
  .contact-container h2 {
    font-size: 1.3rem;
  }
  .footer-content {
    gap: 0.3rem;
  }
  .footer-logo {
    font-size: 1.1rem;
  }
  .footer-links {
    gap: 0.7rem;
  }
} 