:root {
  --ink: #17211d;
  --muted: #66706b;
  --line: #dfe7e2;
  --paper: #fbfcf8;
  --white: #ffffff;
  --sage: #708c78;
  --forest: #244536;
  --clay: #b8613d;
  --gold: #c79d52;
  --blue: #315d74;
  --shadow: 0 20px 50px rgba(23, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img {
  display: block;
  width: 100%;
}

/* Slider Container */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

/* Slides */
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%; /* 100% for each slide */
}

.slide-image {
  position: relative; /* Make the container a positioned element */
  width: 100%; /* Full width */
  height: 600px; /* Fixed height for the banner */
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  overflow: hidden; /* Hide any overflow */
}

.slide-image img {
  width: 100%; /* Make the image responsive */
  height: 100%; /* Ensure the image fills the container */
  object-fit: cover; /* Crop the image to fit the container while maintaining aspect ratio */
}

.image-content {
  position: absolute; /* Position the content over the image */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjust for exact centering */
  text-align: center; /* Center-align the text */
  color: white; /* Make the text white for visibility */
  background: rgba(6, 63, 52, 0.6);
  padding: 20px; /* Add padding around the text */
  border-radius: 8px; /* Optional: Add rounded corners */
}

.image-content h1 {
  font-size: 2.5rem; /* Adjust heading size */
  margin-bottom: 10px;
}

.image-content p {
  font-size: 1.2rem; /* Adjust paragraph size */
}

.slide {
  flex: 1 0 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: none; /* Hide all slides initially */
}

.slide.active {
  display: block; /* Show the active slide */
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 5%; /* Adjusted to align text to the left */
  transform: translateY(-50%);
  text-align: left; /* Set text alignment to left */
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content .eyebrow {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-content .hero-copy {
  font-size: 1.1rem;
}

/* Navigation Buttons */
button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

button.prev:hover,
button.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(251, 252, 248, 0.96);
  box-shadow: 0 8px 24px rgba(23, 33, 29, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: min(250px, 50vw);
  height: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--clay);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(18px, 5vw, 72px) 54px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 23, 18, 0.82), rgba(11, 23, 18, 0.48) 48%, rgba(11, 23, 18, 0.1)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=82") center / cover;
}

.simple-hero {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(11, 23, 18, 0.8), rgba(11, 23, 18, 0.45) 54%, rgba(11, 23, 18, 0.08)),
    url("https://source.unsplash.com/2200x1200/?india,luxury-apartment,real-estate") center / cover;
}

.hero-content {
  width: min(1120px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5c27d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.7;
}

.search-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  gap: 1px;
  width: min(1000px, 100%);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: var(--shadow);
}

.search-panel label,
.contact-form label {
  display: grid;
  gap: 8px;
}

.search-panel label {
  padding: 18px;
  color: var(--ink);
  background: var(--white);
}

.search-panel span,
.contact-form span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-panel select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.search-panel select {
  min-height: 38px;
  border: 0;
  font-weight: 800;
}

.search-panel button,
.contact-form button,
.card-actions button,
.feature-content button {
  border: 0;
  color: var(--white);
  background: var(--forest);
  font-weight: 900;
}

.search-panel button {
  min-width: 150px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-band div {
  padding: 28px clamp(18px, 4vw, 44px);
  background: var(--white);
}

.stats-band strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.stats-band span {
  color: var(--muted);
  font-weight: 700;
}

.section-shell {
  padding: 84px clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.listing-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

.tool-button.active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.property-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 33, 29, 0.06);
}

.property-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.property-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.property-card:hover img {
  transform: scale(1.04);
}

.tag-row {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.tag,
.save-button {
  min-height: 34px;
  padding: 7px 11px;
  border: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
}

.save-button.saved {
  color: var(--white);
  background: var(--clay);
}

.property-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.property-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.price {
  color: var(--forest);
  font-size: 1.35rem;
  font-weight: 900;
  white-space: nowrap;
}

.address {
  margin: -6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.specs span {
  padding: 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #f7f9f4;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.card-actions button {
  min-height: 44px;
}

.card-actions .secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  min-height: 560px;
  background: #e8eee8;
}

.feature-image {
  min-height: 420px;
  background:
    linear-gradient(rgba(12, 30, 22, 0.04), rgba(12, 30, 22, 0.04)),
    url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}

.feature-content p {
  color: var(--muted);
  line-height: 1.75;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.service-list span {
  padding: 14px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  font-weight: 800;
}

.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.neighborhood-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.neighborhood-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.neighborhood-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.neighborhood-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.contact-band {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  padding: 84px clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 45, 35, 0.95), rgba(20, 45, 35, 0.76)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.contact-copy {
  align-self: center;
}

.contact-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  min-height: 48px;
  padding: 12px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 50px;
  background: var(--clay);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1fr) minmax(220px, 0.72fr);
  align-items: flex-start;
  gap: clamp(30px, 5vw, 74px);
  padding: 42px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

.site-footer p {
  margin: 0;
}

.footer-logo {
  display: block;
  width: min(300px, 70vw);
  height: auto;
}

.footer-brand-block {
  display: grid;
  gap: 24px;
}

.social-block h2 {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer .social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: radial-gradient(circle at 35% 28%, #176653, #063f34 72%);
  box-shadow: 0 10px 24px rgba(6, 63, 52, 0.18);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.site-footer .social-links svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: #252a31;
  font-size: 2rem;
  line-height: 1.1;
}

.footer-rule {
  display: block;
  width: min(100%, 405px);
  height: 4px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, var(--forest), #ffd58a);
}

.footer-contact-list {
  display: grid;
  gap: 22px;
}

.footer-contact-list p {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 18px;
  color: #252a31;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.35;
}

.footer-contact-list svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 0;
}

.footer-nav a {
  color: #252a31;
  font-size: clamp(1.05rem, 1.65vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.footer-nav a + a {
  margin-top: 22px;
}

.site-footer a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

.inner-page {
  padding-top: 72px;
}

.inner-page .site-header {
  background: rgba(251, 252, 248, 0.96);
}

.page-hero {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 110px clamp(18px, 5vw, 72px) 56px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 23, 18, 0.82), rgba(11, 23, 18, 0.5) 55%, rgba(11, 23, 18, 0.08)),
    var(--page-image) center / cover;
}

.page-hero > div {
  width: min(860px, 100%);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-hero {
  --page-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=82");
}

.mission-hero {
  --page-image: url("https://images.unsplash.com/photo-1600566753376-12c8ab7fb75b?auto=format&fit=crop&w=1800&q=82");
}

.contact-hero {
  --page-image: url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1800&q=82");
}

.content-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  padding: 84px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.text-stack p,
.value-card p,
.statement-card p,
.principle-list p,
.contact-details p {
  color: var(--muted);
  line-height: 1.75;
}

.compact-section {
  padding-top: 0;
}

.value-grid,
.principle-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card,
.statement-card,
.principle-list article,
.contact-details {
  border: 1px solid var(--line);
  background: var(--white);
}

.value-card {
  padding: 28px;
}

.value-card span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--clay);
  font-weight: 900;
}

.team-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  min-height: 520px;
  background: #e8eee8;
}

.team-image {
  min-height: 400px;
  background: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1500&q=82") center / cover;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.statement-card {
  min-height: 430px;
  padding: clamp(30px, 5vw, 64px);
}

.statement-card.dark {
  color: var(--white);
  background: var(--forest);
}

.statement-card.dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.principle-list {
  grid-template-columns: repeat(4, 1fr);
}

.principle-list article {
  padding: 24px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  padding: 84px clamp(18px, 5vw, 72px);
}

.contact-info-section {
  padding: 76px clamp(18px, 4vw, 56px) 58px;
  background: #063f34;
}

.contact-title-block {
  display: grid;
  justify-items: center;
  text-align: center;
}

.contact-title-block h1,
.contact-title-block h2 {
  margin: 0;
  color: #ffd58a;
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.28);
}

.title-rule {
  display: block;
  width: min(320px, 64vw);
  height: 7px;
  margin: 18px 0 36px;
  background: linear-gradient(90deg, #ffd58a 0 50%, #b98a44 50% 100%);
}

.contact-title-block p {
  margin-bottom: 40px;
  color: rgba(255, 232, 190, 0.9);
  font-size: 2rem;
  font-weight: 600;
}

.corporate-title {
  margin-bottom: 40px;
  color: #ffd58a;
  font-size: 3rem;
  line-height: 1.1;
  text-align: center;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 50px);
}

.contact-info-card {
  display: grid;
  justify-items: center;
  min-height: 360px;
  padding: 48px 34px 42px;
  border: 1px solid rgba(255, 213, 138, 0.46);
  border-radius: 8px;
  background: #0a4a3d;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  text-align: center;
  grid-gap:10px;
}

.contact-icon {
  width: 128px;
  height: 128px;
  fill: none;
  stroke: #ffd58a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.contact-icon path:nth-of-type(even),
.contact-icon circle {
  stroke: #f2c16d;
}

.contact-info-card h3 {
  color: #ffd58a;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}

.contact-info-card p {
  margin: 0;
  color: rgba(255, 232, 190, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.32rem);
  font-weight: 500;
  line-height: 1.55;
}

.inquiry-section {
  padding-top: 58px;
  background: #f7f9f4;
}

.contact-details {
  padding: clamp(26px, 4vw, 42px);
}

.detail-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.detail-list p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.detail-list strong {
  color: var(--ink);
}

.property-dialog {
  width: min(900px, calc(100% - 32px));
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.property-dialog::backdrop {
  background: rgba(10, 18, 14, 0.64);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.dialog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dialog-layout img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.dialog-details {
  padding: 34px;
}

.dialog-details p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 920px) {
  .search-panel,
  .property-grid,
  .feature-band,
  .neighborhood-grid,
  .contact-band,
  .dialog-layout,
  .content-split,
  .team-band,
  .mission-grid,
  .contact-page-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .search-panel button {
    min-height: 58px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .dialog-layout img {
    min-height: 300px;
  }

  .value-grid,
  .principle-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 76px;
  }

  .brand-logo {
    width: min(190px, 58vw);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 620px;
    padding-top: 96px;
  }

  .stats-band,
  .service-list,
  .card-actions {
    grid-template-columns: 1fr;
  }

  .section-shell,
  .contact-band,
  .content-split,
  .contact-page-grid {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .page-hero {
    min-height: 620px;
    padding-top: 86px;
  }

  .contact-info-section {
    padding-top: 52px;
  }

  .contact-title-block p {
    margin-bottom: 46px;
  }

  .corporate-title {
    margin-bottom: 30px;
  }

  .contact-info-card {
    min-height: 300px;
    padding: 36px 22px;
  }

  .contact-icon {
    width: 104px;
    height: 104px;
    margin-bottom: 24px;
  }

  .price {
    white-space: normal;
  }

  .property-title-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .social-links a {
    width: 52px;
    height: 52px;
    font-size: 1.55rem;
  }

  .value-grid,
  .principle-list {
    grid-template-columns: 1fr;
  }
}
.about-section .about-section-heading{
    font-size: 3rem;
    line-height: 48px;
    text-align: center;
    font-weight: 700;
    padding: 50px 0;
}
.mission-vissopn .mission-vissopn-heading{
      font-size: 3rem;
      line-height: 48px;
      text-align: center;
      font-weight: 700;
      padding: 50px 0;
}
