:root {
  --bg-dark: #ffffff;
  --text-primary: #fff;
  --text-secondary: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.8);
  --button-bg: #fff;
  --button-text: #ffffff;
  --button-icon-bg: #ffffff;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.5;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  max-width: 2278px;
  margin: -4px auto 0;
  padding: 16px 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  background: transparent;
}

.logo-section {
  flex-shrink: 0;
}

.brand-link{display:inline-flex;align-items:center;text-decoration:none}
.brand-logo{height:64px;width:142px;max-width:94%;display:block}

.main-nav {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-left: 200px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--text-primary);
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-left: 200px;
}

.contact-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 94px;
  background: url("https://cdn.builder.io/api/v1/image/assets%2F4a6014b4768048a0b283ecc7c1986908%2F8a3970f6b7ff420597d7cdae5a16f6ea") center/cover no-repeat;
}

.hero-container {
  max-width: 1920px;
  width: 100%;
  padding: 0 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  min-height: max(967px, calc(100vh - 94px));
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 30px auto 0;
}

.hero-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-slide-up 0.8s ease-out 0.2s forwards;
}

.hero-subtitle {
  font-size: 19px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-secondary);
  margin: 0 auto 40px;
  max-width: 590px;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-slide-up 0.8s ease-out 0.4s forwards;
}

.get-started-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--button-bg);
  color: #000;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-slide-up 0.8s ease-out 0.6s forwards;
}

.get-started-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.get-started-button:hover .button-icon {
  transform: scale(1.1);
}

.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #000;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.property-image {
  width: 254px;
  height: 254px;
  object-fit: cover;
  border-radius: 16px;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #fff 100%);
  pointer-events: none;
}

/* Logo Marquee */
.logo-strip{background:#fff;padding:16px 0;overflow:hidden}
.marquee{width:100%;overflow:hidden}
.marquee-track{display:flex;align-items:center;gap:40px;width:max-content;animation:marquee-left 30s linear infinite;will-change:transform}
.logo-img{display:block;object-fit:contain;opacity:.9;transition:opacity .2s ease}
.logo-img:hover{opacity:1}
.logo-h36{height:36px}
.logo-h40{height:40px}
.logo-h44{height:44px}
.logo-h48{height:48px}
@keyframes marquee-left{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* Hero animations - fade-in and slide-up effect */
@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered animations for sections and cards */
.section-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Initial state for animation - hidden until in-view */
.section-animate[data-animate="true"] {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}

.section-animate[data-animate="true"].in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.card-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Initial state for animation - hidden until in-view */
.card-animate[data-animate="true"] {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}

.card-animate[data-animate="true"].in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Staggered animations for cards */
.card-animate[data-animate="true"]:nth-child(2).in-view {
  transition-delay: 0.1s;
}

.card-animate[data-animate="true"]:nth-child(3).in-view {
  transition-delay: 0.2s;
}

.card-animate[data-animate="true"]:nth-child(4).in-view {
  transition-delay: 0.3s;
}

.card-animate[data-animate="true"]:nth-child(5).in-view {
  transition-delay: 0.4s;
}

/* Additional stagger for larger grids */
.card-animate[data-animate="true"]:nth-child(6).in-view {
  transition-delay: 0.5s;
}

.card-animate[data-animate="true"]:nth-child(n+7).in-view {
  transition-delay: 0.6s;
}

/* About Section */
.about-section {
  background: #fff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 498px;
  width: 100%;
}

.about-container {
  width: 100%;
  max-width: 1920px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.about-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 54px;
  letter-spacing: -1.6px;
  color: #ffffff;
  margin-bottom: 32px;
  max-width: 811px;
  width: 100%;
  text-align: center;
}

.about-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.36px;
  color: #ffffff;
  max-width: 590px;
  width: 100%;
  text-align: center;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header-container {
    padding: 16px 48px;
  }

  .hero-container {
    padding: 0 48px;
    gap: 40px;
  }

  .hero-title {
    font-size: 56px;
  }

  .about-section {
    padding: 60px 0;
    min-height: 400px;
  }

  .about-title {
    font-size: 48px;
    line-height: 48px;
  }
}

@media (max-width: 968px) {
  .header-container {
    padding: 16px 24px;
    margin: 0 auto;
    height: 79px;
  }

  .main-nav {
    gap: 32px;
    margin-left: 0;
  }

  .contact-button {
    margin-left: 0;
  }

  .hero-container {
    text-align: center;
    padding: 40px 24px;
    gap: 60px;
  }

  .hero-title {
    font-size: 48px;
  }

  .about-section {
    padding: 50px 0;
    min-height: 350px;
  }

  .about-title {
    font-size: 42px;
    line-height: 42px;
    letter-spacing: -1.2px;
  }

  .about-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    height: auto;
    gap: 16px;
  }
  
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 24px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .property-image {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 12px 16px;
  }

  .hero-container {
    padding: 20px 16px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .main-nav {
    gap: 16px;
  }

  .nav-link {
    font-size: 14px;
  }

  .property-image {
    width: 160px;
    height: 160px;
  }

  .about-section {
    padding: 40px 0;
    min-height: 300px;
  }

  .about-container {
    padding: 0 16px;
  }

  .about-title {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -1px;
  }

  .about-subtitle {
    font-size: 15px;
    line-height: 24px;
  }
}

/* Service Areas Section */
.service-areas-section {
  background: #fff;
  padding: 96px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-areas-container {
  width: 100%;
  max-width: 1152px;
  padding: 0 32px;
  text-align: center;
}

.service-areas-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  color: #000;
  margin: 0 0 24px 0;
}

.service-areas-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: #000;
  margin: 0 0 64px 0;
  max-width: 826px;
  margin-left: auto;
  margin-right: auto;
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 100%;
}

.service-area-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 17px 16px;
  height: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.service-area-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
  border-color: #2564eb00;
}

.area-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.area-icon svg {
  width: 20px;
  height: 20px;
}

.area-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: #020817;
  margin: 0 0 2px 0;
  text-align: center;
}

.area-service {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  color: #6B7280;
  margin: 0;
  text-align: center;
}

/* Responsive Design for Service Areas */
@media (max-width: 1200px) {
  .service-areas-section {
    padding: 80px 0;
  }

  .service-areas-container {
    padding: 0 24px;
  }

  .service-areas-grid {
    gap: 20px;
  }
}

@media (max-width: 968px) {
  .service-areas-section {
    padding: 60px 0;
  }

  .service-areas-title {
    font-size: 32px;
    line-height: 36px;
  }

  .service-areas-subtitle {
    font-size: 16px;
    margin-bottom: 48px;
  }

  .service-areas-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .service-areas-section {
    padding: 50px 0;
  }

  .service-areas-title {
    font-size: 28px;
    line-height: 32px;
  }

  .service-areas-subtitle {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 40px;
  }

  .service-areas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .service-area-card {
    height: 96px;
    padding: 14px 12px;
  }

  .area-name {
    font-size: 12px;
    line-height: 18px;
  }

  .area-service {
    font-size: 10px;
    line-height: 14px;
  }
}

@media (max-width: 560px) {
  .service-areas-section {
    padding: 40px 0;
  }

  .service-areas-container {
    padding: 0 16px;
  }

  .service-areas-title {
    font-size: 24px;
    line-height: 28px;
  }

  .service-areas-subtitle {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 32px;
  }

  .service-areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-area-card {
    height: 88px;
    padding: 12px 8px;
  }

  .area-icon {
    width: 18px;
    height: 18px;
    margin-bottom: 4px;
  }

  .area-icon svg {
    width: 18px;
    height: 18px;
  }

  .area-name {
    font-size: 11px;
    line-height: 16px;
  }

  .area-service {
    font-size: 9px;
    line-height: 12px;
  }
}

@media (max-width: 320px) {
  .service-areas-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-area-card {
    height: 80px;
    max-width: 200px;
    margin: 0 auto;
  }
}

/* Testimonials Marquee Section */
.testimonials-marquee-section {
  background: #fff;
  padding: 80px 0;
}

.testimonials-marquee-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 540px;
  margin: 0 auto;
}

.testimonials-badge {
  border: 1px solid #e5e7eb;
  padding: 6px 16px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #131313;
}

.testimonials-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: #000;
  margin: 0;
}

.testimonials-description {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: #5d5d5d;
  margin: 0;
}

.testimonials-columns-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  max-height: 740px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
}

.testimonials-column {
  display: flex;
  width: 100%;
  max-width: 320px;
}

.testimonials-column-md,
.testimonials-column-lg {
  display: none;
}

.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  animation: testimonials-scroll 16s linear infinite;
  will-change: transform;
  background: #fff;
}

.scroll-speed-fast {
  animation-duration: 15s;
}

.scroll-speed-medium {
  animation-duration: 19s;
}

.scroll-speed-slow {
  animation-duration: 17s;
}

@keyframes testimonials-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1), 0 4px 6px -4px rgba(37, 99, 235, 0.1);
  padding: 40px;
  max-width: 320px;
  width: 100%;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: #131313;
  margin: 0;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #131313;
}

.testimonial-role {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #131313;
  opacity: 0.6;
}


@media (max-width: 768px) {
  .testimonials-marquee-section {
    padding: 60px 0;
  }

  .testimonials-title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .testimonials-description {
    font-size: 16px;
    line-height: 26px;
  }

  .testimonials-columns-wrapper {
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .testimonials-marquee-container {
    padding: 0 32px;
  }

  .testimonials-column-md {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .testimonials-marquee-section {
    padding: 80px 0 96px;
  }

  .testimonials-title {
    font-size: 48px;
  }

  .testimonials-column-lg {
    display: flex;
  }
}

@media (max-width: 480px) {
  .testimonials-marquee-container {
    padding: 0 16px;
  }

  .testimonials-title {
    font-size: 30px;
  }

  .testimonials-description {
    font-size: 15px;
    line-height: 24px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }
}

/* Properties Section */
.properties-section {
  background: #fff;
  padding: 35px 0 96px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.properties-container {
  width: 100%;
  max-width: 1280px;
  padding: 0 32px;
}

.properties-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.6px;
  color: #000;
  margin: 0 0 64px 0;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}

.property-card {
  background: #fff;
  border: 1px solid #C3D5F1;
  border-radius: 16px;
  padding: 32px;
  height: 374px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.property-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(195, 213, 241, 0.3);
}

.property-icon {
  width: 64px;
  height: 64px;
  background: #071839;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  flex-shrink: 0;
}

.property-icon svg {
  width: 24px;
  height: 24px;
}

.property-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  color: #131313;
  margin: 0 0 16px 0;
}

.property-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: #5D5D5D;
  margin: 0 0 auto 0;
  flex-grow: 1;
}

.property-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #131313;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 16px;
  transition: color 0.2s ease;
}

.property-link:hover {
  color: #071839;
}

.property-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.properties-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.properties-description {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: #5D5D5D;
  max-width: 561px;
  margin: 0;
}

.view-all-button {
  background: #131313;
  color: #fff;
  border-radius: 9999px;
  padding: 18px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.view-all-button:hover {
  background: #000;
}

@media (max-width: 1280px) {
  .properties-section { padding: 80px 0; }
  .properties-container { padding: 0 24px; }
  .properties-grid {
    gap: 24px;
    margin-bottom: 48px;
  }
  .property-card { height: auto; min-height: 350px; }
}

@media (max-width: 968px) {
  .properties-section { padding: 60px 0; }
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }
  .properties-title { font-size: 22px; margin-bottom: 40px; }
  .properties-footer { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 480px) {
  .properties-section { padding: 40px 0; }
  .properties-container { padding: 0 16px; }
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .properties-title { font-size: 20px; margin-bottom: 32px; }
  .property-title { font-size: 26px; }
  .property-desc { font-size: 16px; }
  .properties-description { font-size: 16px; }
  .view-all-button { padding: 16px 28px; font-size: 16px; }
}

/* Feature Blogs Section */
.feature-blogs-section {
  background: #fff;
  padding: 80px 0;
}

.blogs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.blogs-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.6px;
  color: #000;
  text-align: center;
  margin-bottom: 64px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
}

.featured-blog {
  grid-row: span 2;
}

.featured-blog .blog-image-container {
  height: 655px;
}

.medium-blog .blog-image-container {
  height: 407px;
}

.small-blog .blog-image-container {
  height: 350px;
}

.blog-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-image:hover,
.blog-image-container:hover .blog-image {
  transform: scale(1.05);
}

.blog-content {
  padding: 24px 0 0 0;
}

.blog-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: -0.27px;
  color: #131313;
  margin-bottom: 16px;
}

.blog-date {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.36px;
  color: #5d5d5d;
  margin: 0;
}

/* Responsive Design for Blogs */
@media (max-width: 1200px) {
  .feature-blogs-section {
    padding: 60px 0;
  }

  .blogs-title {
    font-size: 48px;
  }

  .blogs-grid {
    gap: 24px;
  }

  .featured-blog .blog-image-container {
    height: 500px;
  }

  .medium-blog .blog-image-container {
    height: 350px;
  }

  .small-blog .blog-image-container {
    height: 300px;
  }
}

@media (max-width: 968px) {
  .feature-blogs-section {
    padding: 50px 0;
  }

  .blogs-title {
    font-size: 40px;
    margin-bottom: 48px;
  }

  .blogs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .featured-blog {
    grid-column: span 2;
    grid-row: span 1;
  }

  .featured-blog .blog-image-container {
    height: 400px;
  }

  .medium-blog .blog-image-container {
    height: 300px;
  }

  .small-blog .blog-image-container {
    height: 300px;
  }

  .blog-title {
    font-size: 24px;
  }

  .blog-date {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .feature-blogs-section {
    padding: 40px 0;
  }

  .blogs-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .featured-blog {
    grid-column: span 1;
  }

  .featured-blog .blog-image-container,
  .medium-blog .blog-image-container,
  .small-blog .blog-image-container {
    height: 280px;
  }

  .blog-title {
    font-size: 22px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .blogs-container {
    padding: 0 16px;
  }

  .blogs-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .blogs-grid {
    gap: 20px;
  }

  .featured-blog .blog-image-container,
  .medium-blog .blog-image-container,
  .small-blog .blog-image-container {
    height: 240px;
  }

  .blog-title {
    font-size: 20px;
    line-height: 1.25;
  }

  .blog-date {
    font-size: 15px;
  }

  .blog-content {
    padding: 20px 0 0 0;
  }
}

/* Dedicated Quality Section */
.dedicated-quality-section {
  background: #fff;
  padding: 80px 0;
}

.quality-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.quality-content {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 80px;
  align-items: center;
}

.quality-text {
  max-width: 538px;
}

.quality-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.5px;
  color: #000;
  margin-bottom: 24px;
}

.quality-description {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: #5d5d5d;
  margin-bottom: 32px;
}

.learn-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px 16px 32px;
  background: #131313;
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 48px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.learn-more-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(19, 19, 19, 0.2);
}

.stats-grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-item:nth-child(2) {
  align-items: center;
  text-align: center;
}

.stat-item:nth-child(3) {
  align-items: flex-end;
  text-align: right;
}

.stat-number {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.2px;
  color: #000;
  margin-bottom: 4px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: #5d5d5d;
  margin: 0;
}

.quality-image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
}

.architecture-image {
  width: 560px;
  height: 617px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.architecture-image:hover {
  transform: scale(1.02);
}

/* Responsive Design for Quality Section */
@media (max-width: 1200px) {
  .dedicated-quality-section {
    padding: 60px 0;
  }

  .quality-content {
    grid-template-columns: 1fr 480px;
    gap: 60px;
  }

  .quality-title {
    font-size: 52px;
  }

  .architecture-image {
    width: 480px;
    height: 530px;
  }

  .stats-grid {
    gap: 48px;
  }
}

@media (max-width: 968px) {
  .dedicated-quality-section {
    padding: 50px 0;
  }

  .quality-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .quality-text {
    max-width: 100%;
  }

  .quality-title {
    font-size: 44px;
  }

  .stats-grid {
    justify-content: center;
    gap: 32px;
  }

  .stat-item,
  .stat-item:nth-child(2),
  .stat-item:nth-child(3) {
    align-items: center;
    text-align: center;
  }

  .architecture-image {
    width: 100%;
    height: 400px;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .dedicated-quality-section {
    padding: 40px 0;
  }

  .quality-title {
    font-size: 36px;
    line-height: 1.1;
  }

  .quality-description {
    font-size: 16px;
  }

  .learn-more-button {
    font-size: 16px;
    padding: 12px 28px 14px 28px;
    margin-bottom: 40px;
  }

  .stats-grid {
    gap: 24px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-label {
    font-size: 16px;
  }

  .architecture-image {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .quality-container {
    padding: 0 16px;
  }

  .quality-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .quality-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .learn-more-button {
    font-size: 15px;
    padding: 10px 24px 12px 24px;
  }

  .stats-grid {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 15px;
  }

  .architecture-image {
    height: 280px;
  }
}

/* Projects Showcase (converted from JSX) */
.projects-showcase{background:#fff;padding:27px 0 45px}
.projects-container{max-width:1280px;margin:0 auto;padding:0 32px;width:100%}
.project-grid-link{display:grid;align-items:flex-start;gap:32px;grid-template-columns:repeat(12,minmax(0px,1fr));text-decoration:none;color:inherit}
.project-item{font-weight:400}
.project-span-5{grid-column:span 5}
.project-span-3{grid-column:span 3}
.project-span-4{grid-column:span 4}
.project-image{border-radius:16px;overflow:hidden}
.project-image-1{aspect-ratio:628/532}
.project-image-2{aspect-ratio:568/375}
.project-image-3{aspect-ratio:583/532}
.project-img{display:block;width:100%;height:100%;object-fit:cover}
.project-text{margin-top:24px}
.project-title{color:#131313;font-family:'Instrument Sans', sans-serif;font-size:30px;font-weight:400;letter-spacing:-0.75px;line-height:37.5px;margin:0}
.project-description{color:#5d5d5d;font-family:'Inter', sans-serif;font-size:18px;font-weight:400;line-height:29.25px;margin-top:16px}
.carousel-controls{display:flex;align-items:center;gap:16px;justify-content:center;margin-top:48px}
.carousel-btn{display:flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:9999px;background:rgb(7,24,57);color:rgb(255,255,255);border:1px solid rgba(0,0,0,0);text-decoration:none;transition:color .15s cubic-bezier(.4,0,.2,1),background-color .15s cubic-bezier(.4,0,.2,1),border-color .15s cubic-bezier(.4,0,.2,1),fill .15s cubic-bezier(.4,0,.2,1),stroke .15s cubic-bezier(.4,0,.2,1)}
.carousel-btn svg{display:block;width:24px;height:24px;stroke:currentColor;fill:none;stroke-width:2px;stroke-linecap:round;stroke-linejoin:round}

@media (max-width: 1200px){
  .project-grid-link{gap:24px}
}
@media (max-width: 968px){
  .project-grid-link{grid-template-columns:1fr}
  .project-span-5,.project-span-3,.project-span-4{grid-column:span 1}
}
@media (max-width: 480px){
  .projects-container{padding:0 16px}
  .project-title{font-size:28px;line-height:34px}
  .project-description{font-size:16px;line-height:26px}
}

/* Testimonials Section */
.testimonials-section{background:#fff;padding:64px 0 0}
.testimonials-container{max-width:1280px;margin:0 auto;padding:0 24px}
.testimonials-columns{display:flex;gap:24px;justify-content:center;max-height:740px;overflow:hidden;margin-top:40px;-webkit-mask-image:linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 10%, #000 90%, rgba(0,0,0,0) 100%);mask-image:linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 10%, #000 90%, rgba(0,0,0,0) 100%)}
.testimonials-column{display:flex;flex-direction:column;gap:24px}
.testimonial-card{background:#fff;border:1px solid #e2e8f0;border-radius:24px;box-shadow:0 10px 15px -3px rgba(15,23,42,.1),0 4px 6px -4px rgba(15,23,42,.1);padding:24px 24px 40px;max-width:320px;width:100%}
.testimonial-quote{color:#131313;font-size:17px;line-height:1.65;letter-spacing:.01em}
.testimonial-author{display:flex;align-items:center;gap:8px;margin-top:20px}
.author-avatar{display:block;width:40px;height:40px;border-radius:9999px;object-fit:cover}
.author-meta{display:flex;flex-direction:column}
.author-name{font-weight:500;line-height:20px;letter-spacing:-0.4px;color:#131313}
.author-role{opacity:.6;line-height:20px;letter-spacing:-0.4px;color:#131313}

@media (max-width: 1200px){
  .testimonials-container{padding:0 32px}
}
@media (max-width: 968px){
  .testimonials-columns{flex-wrap:wrap}
  .testimonials-column{width:100%;max-width:560px}
}
@media (max-width: 480px){
  .testimonials-container{padding:0 16px}
  .testimonial-quote{font-size:16px}
}

/* Consultation Section */
.consultation-section {
  position: relative;
  height: 900px;
  overflow: hidden;
  background: linear-gradient(90deg, #60A5FA 0%, #2563EB 100%);
}

.consultation-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.consultation-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.consultation-container {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 96px;
  height: 100%;
  display: flex;
  align-items: center;
}

.consultation-content {
  max-width: 614px;
}

.consultation-title {
  font-family: 'Inter', sans-serif;
  font-size: 87px;
  font-weight: 400;
  line-height: 96px;
  letter-spacing: -2.4px;
  color: #fff;
  margin-bottom: 32px;
}

.consultation-description {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  margin-bottom: 40px;
  max-width: 435px;
}

.consultation-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: fit-content;
}

.consultation-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.consultation-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #000;
  border-radius: 50%;
  flex-shrink: 0;
}

.consultation-button-icon svg {
  width: 18px;
  height: 18px;
}

/* Responsive Design for Consultation Section */
@media (max-width: 1200px) {
  .consultation-container {
    padding: 0 48px;
  }

  .consultation-title {
    font-size: 72px;
    line-height: 80px;
    letter-spacing: -2px;
  }
}

@media (max-width: 968px) {
  .consultation-section {
    height: 700px;
  }

  .consultation-container {
    padding: 0 24px;
  }

  .consultation-title {
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -1.6px;
    margin-bottom: 24px;
  }

  .consultation-description {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 32px;
  }

  .consultation-button {
    font-size: 16px;
    padding: 10px 20px;
  }

  .consultation-button-icon {
    width: 36px;
    height: 36px;
  }
}

/* Footer Styles */
.site-footer {
  background: #131313;
  padding: 80px 0;
  color: #fff;
}

.footer-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-content {
  display: grid;
  grid-template-columns: 448px 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-brand-logo {
  margin-bottom: -4px;
}

.footer-logo {
  width: 136px;
  height: 110px;
  object-fit: contain;
  margin: 0;
  padding: 0;
  display: block;
}

.footer-brand-description {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  color: #B7B7B7;
  margin: 20px 0 0 9px;
  max-width: 392px;
}

.footer-navigation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
}

.footer-nav-heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 32px 0;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: -5px;
  min-height: 88px;
  width: 1244px;
  height: 312px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 19px;
  max-width: 495px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-heading {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #989898;
  margin: 0;
}

.contact-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #989898;
  margin: 0;
}

/* Footer column offsets per diff */
.footer-navigation .footer-nav-column:nth-child(1){padding-bottom:61px;margin-top:53px}
.footer-navigation .footer-nav-column:nth-child(2){margin-top:52px}
.footer-navigation .footer-nav-column:nth-child(3){margin-top:50px}
.footer-navigation .footer-nav-column:nth-child(4){margin-top:48px}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
  .footer-container {
    padding: 0 48px;
  }

  .footer-content {
    grid-template-columns: 400px 1fr;
    gap: 60px;
  }

  .footer-logo {
    width: 300px;
    height: 300px;
    margin-left: -50px;
    margin-top: -120px;
  }

  .footer-navigation {
    gap: 48px;
  }
}

@media (max-width: 968px) {
  .site-footer {
    padding: 60px 0;
  }

  .footer-container {
    padding: 0 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }

  .footer-brand-logo {
    margin-bottom: 24px;
  }

  .footer-navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-content {
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer-logo {
    width: 200px;
    height: 200px;
  }

  .footer-brand-description {
    font-size: 16px;
    line-height: 26px;
  }

  .footer-navigation {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-contact {
    gap: 24px;
  }

  .contact-heading {
    font-size: 15px;
  }

  .contact-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 150px;
    height: 150px;
  }

  .footer-brand-description {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-nav-heading {
    font-size: 10px;
    margin-bottom: 16px;
  }

  .footer-nav-link {
    font-size: 12px;
    line-height: 18px;
  }

  .contact-heading {
    font-size: 14px;
  }

  .contact-text {
    font-size: 14px;
    line-height: 22px;
  }

  .consultation-button-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 768px) {
  .consultation-section {
    height: 600px;
  }

  .consultation-title {
    font-size: 44px;
    line-height: 52px;
    letter-spacing: -1.2px;
  }

  .consultation-description {
    font-size: 15px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .consultation-container {
    padding: 0 16px;
  }

  .consultation-section {
    height: 500px;
  }

  .consultation-title {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  .consultation-description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 28px;
  }

  .consultation-button {
    font-size: 15px;
    padding: 8px 16px;
    gap: 8px;
  }

  .consultation-button-icon {
    width: 32px;
    height: 32px;
  }

  .consultation-button-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* Visual Change Toolbar (fallback styles) */
.visual-change-toolbar{position:fixed;top:96px;right:16px;z-index:2147483647;pointer-events:auto;display:block}
.visual-change-button{display:inline-flex;align-items:center;justify-content:center;padding:9px 16px;background:var(--button-bg);color:var(--button-text);border-radius:9999px;border:1px solid rgba(0,0,0,0.08);font-family:'Inter',sans-serif;font-size:14px;font-weight:500;cursor:pointer;box-shadow:0 4px 12px rgba(0,0,0,0.06);transition:transform .2s ease, box-shadow .2s ease}
.visual-change-button:hover{transform:translateY(-1px);box-shadow:0 6px 16px rgba(0,0,0,0.08)}
body.visual-change-on :where(h1,h2,h3,h4,h5,h6,p,a,section,div,article,figure,img,button){outline:1px dashed rgba(7,24,57,.6);outline-offset:2px;cursor:crosshair}

/* About Page Specific Styles */

/* Navigation active state */
.nav-link-active {
  color: var(--text-primary) !important;
  font-weight: 500;
}

/* About Hero Section */
.about-hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.about-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Content Section */
.about-content-section {
  background: #fff;
  padding: 80px 0;
}

.about-content-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-intro {
  margin-bottom: 80px;
}

.about-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  color: #000;
  margin: 0 0 24px 0;
}

.about-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 29px;
  color: #4B5563;
  margin: 0;
  max-width: 561px;
}

.about-main-content {
  display: grid;
  grid-template-columns: 608px 1fr;
  gap: 64px;
  align-items: start;
}

.about-image-container {
  border-radius: 16px;
  overflow: hidden;
}

.about-building-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  padding: 25px;
  border: 1px solid #BFDBFE;
  border-radius: 16px;
  background: #fff;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #071839;
  border-radius: 50%;
  margin-bottom: 16px;
}

.feature-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: #000;
  margin: 0 0 8px 0;
}

.feature-description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: #4B5563;
  margin: 0;
}

/* Company Story Section */
.company-story-section {
  background: #fff;
  padding: 31px 0 80px 0;
}

.company-story-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 32px;
}

.company-story-content {
  padding: 64px 0 108px 0;
}

.company-story-text {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 36px;
  color: #000;
  margin: 0 0 24px 0;
}

.company-story-text:last-child {
  margin-bottom: 0;
}

/* Team Section */
.team-section {
  background: #fff;
  padding: 80px 0;
}

.team-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: #4B5563;
  margin: 0 0 12px 0;
}

.team-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  color: #000;
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1280px;
}

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

.member-image-container {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  height: 400px;
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: #000;
  margin: 0 0 8px 0;
}

.member-role {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  margin: 0;
}

/* Team Works Section */
.team-works-section {
  background: #fff;
  padding: 80px 0;
}

.team-works-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.team-works-content {
  text-align: center;
}

.team-works-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  color: #000;
  margin: 0 0 24px 0;
}

.team-works-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 29px;
  color: #4B5563;
  margin: 0 0 40px 0;
  max-width: 561px;
  margin-left: auto;
  margin-right: auto;
}

.team-works-description {
  max-width: 1152px;
  margin: 0 auto;
  text-align: left;
}

.team-works-description p {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 31px;
  color: #000;
  margin: 0;
}

/* What Drives Us Section */
.drives-us-section {
  background: #fff;
  padding: 80px 0;
}

.drives-us-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 32px;
}

.drives-us-content {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 267px;
  align-items: start;
}

.drives-us-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 28px;
  color: #4B5563;
  margin: 0;
}

.drives-us-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  color: #000;
  margin: 0 0 32px 0;
  max-width: 746px;
}

.drives-us-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.drives-us-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* About Page Responsive Design */
@media (max-width: 1200px) {
  .about-content-container,
  .team-container,
  .team-works-container,
  .drives-us-container {
    padding: 0 48px;
  }

  .about-main-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-container {
    order: -1;
  }

  .drives-us-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 968px) {
  .about-content-section,
  .company-story-section,
  .team-section,
  .team-works-section,
  .drives-us-section {
    padding: 60px 0;
  }

  .about-content-container,
  .company-story-container,
  .team-container,
  .team-works-container,
  .drives-us-container {
    padding: 0 24px;
  }

  .about-title,
  .team-title,
  .team-works-title {
    font-size: 40px;
    line-height: 44px;
  }

  .company-story-text {
    font-size: 20px;
    line-height: 32px;
  }

  .team-works-description p {
    font-size: 19px;
    line-height: 28px;
  }

  .drives-us-title {
    font-size: 26px;
    line-height: 32px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    height: 400px;
  }

  .about-content-section,
  .company-story-section,
  .team-section,
  .team-works-section,
  .drives-us-section {
    padding: 40px 0;
  }

  .about-content-container,
  .company-story-container,
  .team-container,
  .team-works-container,
  .drives-us-container {
    padding: 0 16px;
  }

  .about-title,
  .team-title,
  .team-works-title {
    font-size: 32px;
    line-height: 36px;
  }

  .about-subtitle,
  .team-works-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .company-story-text {
    font-size: 18px;
    line-height: 28px;
  }

  .team-works-description p {
    font-size: 17px;
    line-height: 26px;
  }

  .drives-us-title {
    font-size: 24px;
    line-height: 30px;
  }

  .feature-title {
    font-size: 20px;
    line-height: 28px;
  }

  .feature-description {
    font-size: 14px;
    line-height: 22px;
  }

  .member-name {
    font-size: 20px;
    line-height: 28px;
  }

  .member-role {
    font-size: 14px;
    line-height: 20px;
  }

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

  .member-image-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about-hero-section {
    height: 300px;
  }

  .about-intro {
    margin-bottom: 40px;
  }

  .team-header {
    margin-bottom: 40px;
  }

  .about-title,
  .team-title,
  .team-works-title {
    font-size: 28px;
    line-height: 32px;
  }

  .drives-us-title {
    font-size: 20px;
    line-height: 26px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .drives-us-button {
    padding: 16px 24px;
    font-size: 14px;
  }
}

/* FAQ Section */
.faq-section {
  background: #fff;
  padding: 96px 0;
}

.faq-container {
  max-width: 1568px;
  margin: 0 auto;
  padding: 0 144px 0 172px;
}

.faq-content {
  display: grid;
  grid-template-columns: 451px 1fr;
  gap: 189px;
  align-items: start;
  margin-left: -5px;
}

.faq-header {
  max-width: 451px;
}

.faq-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -1.5px;
  color: #000;
  margin-bottom: 40px;
}

.faq-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 29px;
  color: #4B5563;
  max-width: 428px;
}

.faq-list {
  max-width: 576px;
}

.faq-item {
  border-top: 2px solid #C3D5F1;
  border-bottom: 1px solid #C3D5F1;
}

.faq-item-last {
  border-bottom: 2px solid #C3D5F1;
}

.faq-question-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 128px;
  padding: 16px 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question-container:hover {
  background-color: rgba(195, 213, 241, 0.1);
}

.faq-question {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.675px;
  color: #222;
  margin: 0;
  flex: 1;
}

.faq-expand-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #131313;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-expand-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(19, 19, 19, 0.2);
}

.faq-expand-button svg {
  width: 18px;
  height: 18px;
}

/* FAQ Responsive Design */
@media (max-width: 1400px) {
  .faq-container {
    padding: 0 48px;
  }

  .faq-content {
    grid-template-columns: 400px 1fr;
    gap: 80px;
  }

  .faq-title {
    font-size: 52px;
    line-height: 56px;
  }
}

@media (max-width: 1200px) {
  .faq-section {
    padding: 80px 0;
  }

  .faq-container {
    padding: 0 32px;
  }

  .faq-content {
    grid-template-columns: 350px 1fr;
    gap: 60px;
  }

  .faq-title {
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 32px;
  }

  .faq-question {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.6px;
  }
}

@media (max-width: 968px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-container {
    padding: 0 24px;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-header {
    max-width: 100%;
    text-align: center;
  }

  .faq-title {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 24px;
  }

  .faq-subtitle {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-question {
    font-size: 22px;
    line-height: 28px;
  }

  .faq-question-container {
    min-height: 100px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-container {
    padding: 0 16px;
  }

  .faq-title {
    font-size: 36px;
    line-height: 40px;
  }

  .faq-question {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.5px;
  }

  .faq-question-container {
    min-height: 88px;
    gap: 16px;
  }

  .faq-expand-button {
    width: 40px;
    height: 40px;
  }

  .faq-expand-button svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1px;
  }

  .faq-subtitle {
    font-size: 15px;
    line-height: 24px;
  }

  .faq-question {
    font-size: 18px;
    line-height: 24px;
  }

  .faq-question-container {
    min-height: 80px;
    gap: 12px;
  }

  .faq-expand-button {
    width: 36px;
    height: 36px;
  }

  .faq-expand-button svg {
    width: 14px;
    height: 14px;
  }
}
