* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

:root {
  --header-height: 200px;
  --nav-height: 64px;
  --footer-height: 160px;
}

body {
  font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #4a5568;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-height) + var(--nav-height));
  padding-bottom: var(--footer-height);
}

/* Header */
.header {
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid #E2F0E2;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(159, 176, 159, 0.1);
}

.logo {
  font-size: 2.5rem;
  color: #9FB09F;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.logo-image {
  width: 350px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.02);
}

.tagline {
  font-size: 0.9rem;
  color: #8a9a8a;
  margin: 0.5rem 0 0;
  letter-spacing: 0.02em;
}

/* Main content */
main {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex: 1 0 auto;
}

/* Section title */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3.5rem;
  color: #4a5568;
  font-weight: 300;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #9FB09F, #B8C9B8);
  border-radius: 2px;
}

/* Hero section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #ffffff;
  min-height: auto;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 2rem;
  }
}
.hero-content {
  max-width: 600px;
  text-align: center;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2d3748;
  font-weight: 300;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

.hero-text {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: #666;
  letter-spacing: 0.3px;
}

.process-box {
  background-color: #F8FBF8;
  border-left: 4px solid #9FB09F;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.8rem;
  text-align: left;
}

.process-box h3 {
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}

.process-list li {
  padding: 0.4rem 0;
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
  break-inside: avoid;
}

.process-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9FB09F;
  font-weight: bold;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #9FB09F;
  color: white;
  box-shadow: 0 4px 15px rgba(159, 176, 159, 0.3);
}

.btn-primary:hover {
  background-color: #8AA08A;
  box-shadow: 0 6px 20px rgba(159, 176, 159, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #9FB09F;
  border-color: #9FB09F;
}

.btn-secondary:hover {
  background-color: #F0F5F0;
  border-color: #8AA08A;
  color: #8AA08A;
}

/* About section */
.about {
  background-color: #ffffff;
  padding: 4rem 2rem;
}

.about-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(159, 176, 159, 0.2);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: #2d3748;
  line-height: 1.4;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1rem;
}

/* Services section */
.services {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

/* Services content styled like pricing */
.services-content {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #E2F0E2;
  border-radius: 10px;
  overflow: hidden;
}

.service-item {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid #E2F0E2;
  background-color: #F8FBF8;
  transition: background-color 0.2s ease;
}

.service-item:nth-child(odd) {
  background-color: #ffffff;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item h3 {
  font-size: 1.15rem;
  color: #2d3748;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}

.service-item p {
  color: #4a5568;
  font-size: 0.98rem;
  line-height: 1.7;
}
/* Pricing */
.pricing {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.pricing-group {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.pricing-group h3 {
  font-size: 1.4rem;
  color: #2d3748;
  font-weight: 500;
  margin-bottom: 1rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #E2F0E2;
  border-radius: 10px;
  overflow: hidden;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid #E2F0E2;
  background-color: #F8FBF8;
}

.pricing-list li:nth-child(odd) {
  background-color: #ffffff;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-title {
  color: #4a5568;
  font-size: 0.98rem;
  line-height: 1.5;
}

.price-tag {
  color: #2d3748;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2F0E2;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #9FB09F, #B8C9B8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(159, 176, 159, 0.2);
  border-color: #9FB09F;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  margin-bottom: 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 60px;
  height: 60px;
  stroke: #9FB09F;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
  stroke: #8AA08A;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2d3748;
  letter-spacing: -0.3px;
}

.price {
  font-size: 2.2rem;
  font-weight: 300;
  color: #9FB09F;
  margin: 1.5rem 0;
}

/* Contact section */
.contact {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

/* Gallery section */
.gallery {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.gallery-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.gallery-item {
  background-color: white;
  border: 1px solid #E2F0E2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(159, 176, 159, 0.18);
  border-color: #9FB09F;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item figcaption {
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  color: #4a5568;
  border-top: 1px solid #E2F0E2;
}

.contact-info {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2F0E2;
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: 0 8px 20px rgba(159, 176, 159, 0.15);
  transform: translateY(-2px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F0F5F0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background-color: #9FB09F;
}

.contact-item:hover .contact-icon svg {
  stroke: white;
}

.contact-item p {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #2d3748;
}

/* Contact links: inherit color and improve accessibility */
.contact-item a {
  color: inherit;
  text-decoration: none;
}

.contact-item a:hover {
  color: #9FB09F;
  text-decoration: underline;
}

.contact-item a:focus-visible {
  outline: 2px solid #9FB09F;
  outline-offset: 2px;
  border-radius: 2px;
}

.contact-item .small {
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background-color: #2d3748;
  color: #cbd5e0;
  padding: 3rem 2rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
}

.footer p {
  font-size: 0.9rem;
  margin: 0.75rem 0;
  line-height: 1.8;
}

.footer-legal {
  font-size: 0.85rem;
  color: #a0aec0;
  margin-top: 1.5rem;
}

.footer a {
  color: #9FB09F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #8AA08A;
}

/* Navigation Bar */
.navbar {
  background-color: #ffffff;
  padding: 0;
  border-bottom: 1px solid #E2F0E2;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 950;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-menu {
  list-style: none;
  display: flex !important;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-link {
  display: block;
  padding: 1rem 1.6rem;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.nav-link:link {
  color: #4a5568;
  text-decoration: none;
}

.nav-link:visited {
  color: #4a5568;
  text-decoration: none;
}

.nav-link:hover {
  color: #9FB09F;
  border-bottom-color: #9FB09F;
  background-color: #F8FBF8;
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-link {
    padding: 0.9rem 1.2rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  
  .nav-link:hover {
    border-left-color: #9FB09F;
    border-bottom-color: transparent;
  }
}

.footer-legal {
  font-size: 0.8rem;
  color: #8a8a8a;
}

