body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.about-section {
  padding: 4rem 1rem;
  background-color: var(--background-light);
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 800px;
  background-color: var(--card-bg);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow-light);
  border: 1px solid var(--border-light);
}

.about-title {
  color: var(--primary-dark);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  text-align: justify;
}


.blog-grid {
  padding: 4rem 1rem;
  background-color: var(--background-light);
  text-align: center;
}

.blog-grid-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--card-bg);
  border-radius: 1.5rem;
  box-shadow: 0 6px 16px var(--shadow-light);
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.blog-card h3 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.blog-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.blog-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-btn {
  background-color: var(--primary-green);
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-weight: bold;
  text-align: center;
  align-self: start;
  transition: background-color 0.3s ease;
}

.blog-btn:hover {
  background-color: var(--primary-dark);
}

.social-section {
  padding: 3rem 1rem;
  text-align: center;
  background-color: var(--background-light);
}

.social-title {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px var(--shadow-light);
}

.facebook { background-color: #1877f2; }
.twitter { background-color: #1da1f2; }
.instagram { background-color: #e1306c; }

.faq-section {
  padding: 4rem 1rem;
  background-color: var(--background-light);
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2rem;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px var(--shadow-light);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: var(--primary-green);
}

.faq-answer {
  padding: 0 1.5rem 1rem;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
