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

:root {
  --midnight-charcoal: #0f1720;
  --deep-graphite: #1c2530;
  --warm-bronze: #b08a5a;
  --soft-stone-gray: #c4c8cc;
  --subtle-water-blue: #5fa8d3;
  --muted-amber-glow: #d8a24a;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  line-height: 1.6;
  color: var(--soft-stone-gray);
  background-color: var(--midnight-charcoal);
}

h1,
h2,
h3,
h4 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--warm-bronze);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--muted-amber-glow);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.main-header {
  background-color: var(--deep-graphite);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: var(--muted-amber-glow);
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.main-nav a {
  color: var(--soft-stone-gray);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--muted-amber-glow);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--soft-stone-gray);
  transition: all 0.3s ease;
}

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--midnight-charcoal) 0%, var(--deep-graphite) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.5rem;
  color: var(--warm-bronze);
  margin-bottom: 0;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(176, 138, 90, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.lighting-architecture {
  padding: 8rem 2rem;
  background-color: var(--deep-graphite);
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.text-block h2 {
  margin-bottom: 2rem;
}

.text-block p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.link-arrow {
  display: inline-block;
  color: var(--muted-amber-glow);
  font-weight: 600;
  margin-top: 1rem;
}

.link-arrow:after {
  content: " →";
}

.image-block.offset {
  margin-top: 3rem;
}

.image-block img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.water-systems-overview {
  padding: 8rem 2rem;
  background-color: var(--midnight-charcoal);
}

.split-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.split-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-right {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-right h2 {
  margin-bottom: 2rem;
}

.split-right p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.night-day-comparison {
  padding: 8rem 2rem;
  background-color: var(--deep-graphite);
}

.precision-engineering {
  padding: 8rem 2rem;
  background-color: var(--midnight-charcoal);
}

.sustainable-solutions {
  padding: 8rem 2rem;
  background-color: var(--deep-graphite);
}

.comparison-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.comparison-col {
  text-align: center;
}

.comparison-col img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.comparison-col h3 {
  margin-bottom: 1rem;
}

.signature-projects {
  padding: 8rem 2rem;
  background-color: var(--midnight-charcoal);
}

.projects-header {
  max-width: 1400px;
  margin: 0 auto 4rem;
  text-align: center;
}

.projects-header p {
  font-size: 1.25rem;
  color: var(--warm-bronze);
}

.projects-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.project-card.staggered:nth-child(2) {
  margin-top: 3rem;
}

.project-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-info {
  padding: 2rem;
  background-color: var(--deep-graphite);
}

.project-info h3 {
  margin-bottom: 0.5rem;
}

.project-info p {
  color: var(--soft-stone-gray);
  margin-bottom: 0;
}

.projects-cta {
  max-width: 1400px;
  margin: 4rem auto 0;
  text-align: center;
}

.cta-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--warm-bronze) 0%, var(--muted-amber-glow) 100%);
  text-align: center;
}

.cta-content h2 {
  color: var(--midnight-charcoal);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--midnight-charcoal);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--midnight-charcoal);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--deep-graphite);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--midnight-charcoal);
  border: 2px solid var(--midnight-charcoal);
}

.btn-secondary:hover {
  background-color: var(--midnight-charcoal);
  color: var(--white);
}

.main-footer {
  background-color: var(--deep-graphite);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--muted-amber-glow);
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: var(--soft-stone-gray);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--soft-stone-gray);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--muted-amber-glow);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 200, 204, 0.2);
  text-align: center;
}

.footer-bottom p {
  color: var(--soft-stone-gray);
  font-size: 0.875rem;
}

.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--deep-graphite);
}

.page-hero-content {
  max-width: 900px;
  padding: 2rem;
}

.page-hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.5rem;
  color: var(--warm-bronze);
}

.vertical-flow {
  background-color: var(--midnight-charcoal);
}

.flow-block {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 2rem;
}

.flow-block.reverse {
  background-color: var(--deep-graphite);
}

.flow-block.reverse .flow-content {
  order: 2;
}

.flow-block.reverse .flow-image {
  order: 1;
}

.flow-content h2 {
  margin-bottom: 2rem;
}

.flow-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.flow-image img {
  width: 100%;
  border-radius: 4px;
}

.lighting-specs {
  padding: 8rem 2rem;
  background-color: var(--deep-graphite);
}

.specs-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.specs-container h2 {
  margin-bottom: 4rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  text-align: left;
}

.spec-item {
  padding: 2rem;
  background-color: var(--midnight-charcoal);
  border-left: 3px solid var(--warm-bronze);
}

.spec-item h3 {
  color: var(--muted-amber-glow);
  margin-bottom: 1rem;
}

.spec-item p {
  color: var(--soft-stone-gray);
  margin-bottom: 0;
}

.horizontal-sections {
  padding: 8rem 0;
  background-color: var(--midnight-charcoal);
}

.horizontal-scroll {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.h-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.h-section:nth-child(even) {
  background-color: var(--deep-graphite);
  padding: 4rem 2rem;
}

.h-content h2 {
  margin-bottom: 2rem;
}

.h-content p {
  font-size: 1.125rem;
  line-height: 1.8;
}

.h-visual img {
  width: 100%;
  border-radius: 4px;
}

.irrigation-features {
  padding: 8rem 2rem;
  background-color: var(--deep-graphite);
}

.features-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.features-wrapper h2 {
  margin-bottom: 4rem;
}

.features-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  text-align: left;
}

.feature-box {
  padding: 2.5rem;
  background-color: var(--midnight-charcoal);
  border-radius: 4px;
}

.feature-box h3 {
  color: var(--muted-amber-glow);
  margin-bottom: 1rem;
}

.feature-box p {
  color: var(--soft-stone-gray);
  margin-bottom: 0;
}

.systems-grid-section {
  padding: 8rem 2rem;
  background-color: var(--midnight-charcoal);
}

.systems-intro {
  max-width: 1000px;
  margin: 0 auto 4rem;
  text-align: center;
}

.systems-intro h2 {
  margin-bottom: 2rem;
}

.systems-intro p {
  font-size: 1.25rem;
  line-height: 1.8;
}

.systems-main-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.system-card {
  padding: 2.5rem;
  background-color: var(--deep-graphite);
  border-radius: 4px;
  border-top: 3px solid var(--warm-bronze);
}

.system-card h3 {
  color: var(--muted-amber-glow);
  margin-bottom: 1rem;
}

.system-card p {
  color: var(--soft-stone-gray);
  margin-bottom: 0;
}

.systems-visual {
  padding: 0 2rem 8rem;
  background-color: var(--midnight-charcoal);
}

.systems-visual img {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  border-radius: 4px;
}

.systems-benefits {
  padding: 8rem 2rem;
  background-color: var(--deep-graphite);
}

.benefits-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.benefits-container h2 {
  margin-bottom: 4rem;
}

.benefits-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: left;
}

.benefit-col {
  padding: 2.5rem;
  background-color: var(--midnight-charcoal);
}

.benefit-col h3 {
  color: var(--muted-amber-glow);
  margin-bottom: 1rem;
}

.benefit-col p {
  color: var(--soft-stone-gray);
  margin-bottom: 0;
}

.editorial-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 8rem;
}

.gallery-item {
  margin-bottom: 6rem;
}

.gallery-item img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.gallery-caption {
  max-width: 800px;
  margin: 0 auto;
}

.gallery-caption h2 {
  margin-bottom: 1rem;
}

.gallery-caption p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--soft-stone-gray);
}

.about-philosophy {
  padding: 8rem 2rem;
  background-color: var(--midnight-charcoal);
}

.philosophy-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-text h2 {
  margin-bottom: 2rem;
}

.philosophy-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.philosophy-image img {
  width: 100%;
  border-radius: 4px;
}

.about-approach {
  padding: 8rem 2rem;
  background-color: var(--deep-graphite);
}

.approach-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.approach-wrapper h2 {
  margin-bottom: 4rem;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: left;
}

.step-item {
  padding: 2rem;
  background-color: var(--midnight-charcoal);
  border-top: 3px solid var(--warm-bronze);
}

.step-item h3 {
  color: var(--muted-amber-glow);
  margin-bottom: 1rem;
}

.step-item p {
  color: var(--soft-stone-gray);
  margin-bottom: 0;
}

.about-service {
  padding: 8rem 2rem;
  background-color: var(--midnight-charcoal);
  text-align: center;
}

.service-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-content h2 {
  margin-bottom: 2rem;
}

.service-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-section {
  padding: 8rem 2rem;
  background-color: var(--midnight-charcoal);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
}

.contact-form-area h2 {
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--soft-stone-gray);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  background-color: var(--deep-graphite);
  border: 1px solid rgba(196, 200, 204, 0.2);
  border-radius: 4px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--warm-bronze);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.875rem;
}

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

.contact-info-box {
  padding: 2rem;
  background-color: var(--deep-graphite);
  border-radius: 4px;
}

.contact-info-box h3 {
  color: var(--muted-amber-glow);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-info-box p {
  color: var(--soft-stone-gray);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.contact-info-box a {
  color: var(--warm-bronze);
}

.map-section {
  padding: 0 0 8rem;
}

.map-section iframe {
  width: 100%;
  filter: grayscale(100%) contrast(1.2);
}

.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  background-color: var(--midnight-charcoal);
}

.thankyou-content {
  max-width: 700px;
  text-align: center;
}

.thankyou-content h1 {
  margin-bottom: 2rem;
}

.thankyou-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.thankyou-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.legal-page {
  padding: 6rem 2rem;
  background-color: var(--midnight-charcoal);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-container h1 {
  margin-bottom: 1rem;
}

.legal-updated {
  color: var(--warm-bronze);
  font-style: italic;
  margin-bottom: 3rem;
}

.legal-container h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.legal-container h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-container p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.legal-container ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-container ul li {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  color: var(--soft-stone-gray);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--deep-graphite);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    padding: 2rem;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .main-nav ul li {
    border-bottom: 1px solid rgba(196, 200, 204, 0.1);
    padding-bottom: 1rem;
  }

  .main-nav ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .content-wrapper,
  .split-content,
  .comparison-container,
  .flow-block,
  .h-section,
  .philosophy-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .project-card.staggered:nth-child(2) {
    margin-top: 0;
  }

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

  .specs-grid,
  .features-layout,
  .benefits-columns {
    grid-template-columns: 1fr;
  }

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

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

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .flow-block.reverse .flow-content {
    order: 1;
  }

  .flow-block.reverse .flow-image {
    order: 2;
  }

  h1 {
    font-size: 2.5rem;
  }

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

@media (max-width: 640px) {
  .footer-container,
  .systems-main-grid,
  .approach-steps {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-content h1,
  .page-hero-content h1 {
    font-size: 2.25rem;
  }

  .thankyou-actions {
    flex-direction: column;
  }
}

@media (max-width: 320px) {
  .header-container {
    padding: 0 1rem;
  }

  .main-nav {
    padding: 1.5rem;
  }

  .main-nav ul {
    gap: 1rem;
  }

  .main-nav a {
    font-size: 0.875rem;
  }

  .logo {
    font-size: 0.875rem;
  }

  .main-nav ul {
    gap: 1rem;
    font-size: 0.75rem;
  }

  .hero-section {
    min-height: 70vh;
    padding: 2rem 1rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

  .page-hero-content p {
    font-size: 1rem;
  }

  .lighting-architecture,
  .water-systems-overview,
  .precision-engineering,
  .sustainable-solutions,
  .night-day-comparison,
  .signature-projects,
  .cta-section,
  .page-hero,
  .vertical-flow,
  .lighting-specs,
  .horizontal-sections,
  .irrigation-features,
  .systems-grid-section,
  .systems-visual,
  .systems-benefits,
  .about-philosophy,
  .about-approach,
  .about-service,
  .contact-section,
  .legal-page,
  .thankyou-section {
    padding: 4rem 1rem;
  }

  .content-wrapper,
  .split-content,
  .comparison-container,
  .flow-block,
  .h-section,
  .philosophy-container {
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .text-block h2,
  .split-right h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .text-block p,
  .split-right p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .split-right {
    padding: 2rem 1rem;
  }

  .comparison-col img {
    height: 300px;
    margin-bottom: 1rem;
  }

  .comparison-col h3 {
    font-size: 1.25rem;
  }

  .comparison-col p {
    font-size: 0.875rem;
  }

  .projects-header h2 {
    font-size: 1.5rem;
  }

  .projects-header p {
    font-size: 1rem;
  }

  .projects-grid {
    gap: 1.5rem;
  }

  .project-card img {
    height: 300px;
  }

  .project-info {
    padding: 1.5rem;
  }

  .project-info h3 {
    font-size: 1.25rem;
  }

  .project-info p {
    font-size: 0.875rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .footer-col h4 {
    font-size: 1rem;
  }

  .footer-col p,
  .footer-col ul li a {
    font-size: 0.875rem;
  }

  .footer-bottom {
    padding: 1rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1rem;
  }

  .flow-content h2,
  .h-content h2,
  .philosophy-text h2 {
    font-size: 1.5rem;
  }

  .flow-content p,
  .h-content p,
  .philosophy-text p {
    font-size: 1rem;
  }

  .specs-grid,
  .features-layout,
  .benefits-columns {
    gap: 1.5rem;
  }

  .spec-item,
  .feature-box,
  .benefit-col {
    padding: 1.5rem;
  }

  .systems-main-grid {
    gap: 1.5rem;
  }

  .system-card {
    padding: 1.5rem;
  }

  .approach-steps {
    gap: 1.5rem;
  }

  .step-item {
    padding: 1.5rem;
  }

  .contact-container {
    gap: 2rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.875rem;
  }

  .contact-info-box {
    padding: 1.5rem;
  }

  .legal-container h1 {
    font-size: 1.75rem;
  }

  .legal-container h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .legal-container h3 {
    font-size: 1.25rem;
  }

  .legal-container p,
  .legal-container ul li {
    font-size: 1rem;
  }

  .thankyou-content h1 {
    font-size: 1.75rem;
  }

  .thankyou-content p {
    font-size: 1rem;
  }

  .thankyou-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .image-block.offset {
    margin-top: 1.5rem;
  }

  .gallery-item {
    margin-bottom: 3rem;
  }

  .gallery-caption h2 {
    font-size: 1.5rem;
  }

  .gallery-caption p {
    font-size: 1rem;
  }
}
