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

body {
  font-family: 'Times New Roman', Times, serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #f5f7fa;
  padding-top: 70px;
  margin: 0;
}

/* Adjust padding for mobile */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  margin-top: 0;
  margin-bottom: 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #2c3e50 100%);
  color: white;
  padding: 100px 50px;
  text-align: left;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(139,115,85,0.08)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content h1 {
  font-size: 52px;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-content .highlight {
  color: #8b7355;
  display: block;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.8;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #8b7355;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: #6d5a47;
  transform: translateX(3px);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 40px;
  border: 2px solid #8b7355;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: #8b7355;
  color: white;
}

.hero-image-wrapper {
  width: 100%;
  height: 450px;
  background: #8b7355;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%);
}

/* ===== SECTION STYLES ===== */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 50px;
}

.section-title {
  font-size: 42px;
  color: #1a1f2e;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #7f8c8d;
  font-size: 16px;
  margin-bottom: 60px;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.about-image-box {
  width: 100%;
  height: 550px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.about-image-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.1) 0%, transparent 100%);
  z-index: 1;
}

.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-size: 32px;
  color: #1a1f2e;
  margin-bottom: 25px;
  font-weight: 700;
}

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.about-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: #f8f9fa;
  border-left: 4px solid #8b7355;
  border-radius: 2px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: #8b7355;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 18px;
  color: #1a1f2e;
  margin-bottom: 5px;
  font-weight: 600;
}

.feature-text p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: #f8f9fa;
}

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

.service-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.service-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.2) 0%, transparent 100%);
  z-index: 1;
}

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

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 20px;
  color: #1a1f2e;
  margin: 25px 25px 15px;
  font-weight: 600;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  padding: 0 25px 30px;
}

/* ===== ARTICLES SECTION ===== */
.articles {
  background: white;
}

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

.article-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid #e9ecef;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.article-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.15) 0%, transparent 100%);
  z-index: 1;
}

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

.article-card:hover .article-image img {
  transform: scale(1.1);
}

.article-content {
  padding: 25px;
}

.article-content h4 {
  font-size: 20px;
  color: #1a1f2e;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.article-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-stats {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #999;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.article-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 32px;
  color: #1a1f2e;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-intro {
  font-size: 16px;
  color: #666;
  margin-bottom: 5px;
}

.contact-cta {
  font-size: 18px;
  color: #8b7355;
  font-weight: 600;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #8b7355;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 16px;
  color: #1a1f2e;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-item-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.contact-item-text a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-text a:hover {
  color: #8b7355;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #1a1f2e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-icons a:hover {
  background: #8b7355;
  transform: translateY(-3px);
}

.map-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-container,
  .about-content {
    grid-template-columns: 1fr;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 180px;
  }

  header {
    padding: 8px 0;
  }

  .header-container {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }

  .logo-image {
    height: 93.75px;
    max-width: 450px;
  }

  .hero {
    padding: 60px 20px 30px 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .services-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .section-container,
  .contact-container {
    padding: 40px 20px;
  }

  .about-image-box {
    height: 400px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
7