:root {
  --primary-text: #121217;
  --secondary-text: #61708a;
  --background-color: #ffffff;
  --accent-color: #0f4abd;
  --border-color: #dbdee5;
  --header-border-color: #e5e8eb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Noto Serif', serif;
  background-color: var(--background-color);
  color: var(--primary-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.content-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
/* CSS for section section:header */
.site-header {
  background-color: var(--background-color);
  border-bottom: 1px solid var(--header-border-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  min-height: 65px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  color: var(--primary-text);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: var(--primary-text);
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .main-nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* CSS for section section:hero */
.hero-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 512px;
  border-radius: 8px;
  padding: 40px;
  color: var(--background-color);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%), url('images/2e8b8b7a0170223bb41421f21d05ffa5b97976eb.png');
  background-size: cover !important;
  background-position: center !important;
}

.hero-text {
  max-width: 772px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -2px;
  margin: 0 0 24px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  max-width: 694px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-content-wrapper {
    min-height: 400px;
    padding: 20px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
}

/* CSS for section section:about */
.about-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  max-width: 928px;
}

/* CSS for section section:services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.service-icon {
  width: 24px;
  height: 24px;
}

.service-text-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}

.service-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--secondary-text);
  margin: 0;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* CSS for section section:products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.product-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-image {
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.product-image-1 {
  background-image: url('images/c288938840065ed171580365ca934faef55a82d4.png');
}

.product-image-2 {
  background-image: url('images/46782c905dd7550f40691a6a318d5a2ae8937ad8.png');
}

.product-image-3 {
  background-image: url('images/f1427d3aa3cc2017a30d9f7b8f4e167e6be58d39.png');
}

.product-caption {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* CSS for section section:footer */
.site-footer {
  background-color: #f8f9fa;
  color: var(--secondary-text);
  border-top: 1px solid var(--header-border-color);
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 40px;
}

.footer-contact {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-contact a {
  color: var(--primary-text);
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
/* CSS for section section:page */
.page-section {
    display: flex;
    flex-direction: column;
    padding: 20px 160px;
}
.page-content {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}
.page-title {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    margin-top: 52px; /* (1802 - 1701 - 65 - 20) + 16 = 52 */
    margin-bottom: 20px; /* 1862 - 1802 - 40 = 20 */
}
.page .entry {
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.page .entry ul {
    padding-left: 20px;
    margin-top: 1em;
}
.page .entry li {
    margin-bottom: 0.75em;
        list-style: disc;
}
.page .entry img {
	margin:20px 0 0;
}
@media (max-width: 1280px) {
    .page-section {
        padding: 20px 40px;
    }
}
@media (max-width: 768px) {
    .page-section {
        padding: 20px 15px;
    }
    .page-title {
        font-size: 28px;
        line-height: 36px;
        margin-top: 30px;
    }
}
/* CSS for section section:services */
.services-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.services-intro {
  max-width: 928px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

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

.service-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border-medium);
  border-radius: 8px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* CSS for section section:products */
.products-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.products-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.products-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
}
.product-category {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.category-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 12px;
}
.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  border-radius: 8px;
}
.product-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media (max-width: 768px) {
  .products-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .products-container {
    gap: 60px;
  }
  .products-title {
    text-align: center;
    font-size: 28px;
  }
  .product-category {
    gap: 24px;
  }
  .category-title {
    font-size: 20px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-card img {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px; /* Gap between contact items */
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color:#f5f2f0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-icon-wrapper img {

}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color:#171212;
	margin:0;
}

.contact-value {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color:#8a6b61;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}