/* Page Styles */
.page-content {
  margin-bottom: 2rem;
}

.page-title {
  color: #000000;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 3px solid #000000;
  padding-bottom: 1rem;
}

.entry-header {
  margin-bottom: 2rem;
}

.entry-title {
  margin-bottom: 1rem;
}

.entry-meta {
  color: #666666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.entry-content {
  line-height: 1.8;
  color: #000000;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: #000000;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}

.entry-content h1 {
  font-size: 2rem;
}

.entry-content h2 {
  font-size: 1.75rem;
}

.entry-content h3 {
  font-size: 1.5rem;
}

.entry-content h4 {
  font-size: 1.25rem;
}

.entry-content h5 {
  font-size: 1.1rem;
}

.entry-content h6 {
  font-size: 1rem;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}

/* Page Links */
.page-links {
  margin: 2rem 0;
  text-align: center;
}

.page-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-links a:hover {
  background: #333333;
}

.page-links .current {
  background: #666666;
  color: #ffffff;
}

/* Edit Link */
.edit-link {
  margin-top: 1rem;
  text-align: center;
}

.edit-link a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f8f8f8;
  color: #000000;
  text-decoration: none;
  border: 1px solid #000000;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.edit-link a:hover {
  background: #000000;
  color: #ffffff;
}

/* Page Specific Styles */
.about-page {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.about-page h2 {
  color: #000000;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.about-page p {
  color: #333333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-page {
  background: #ffffff;
  border: 2px solid #000000;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.contact-page h2 {
  color: #000000;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

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



.contact-item h3 {
  color: #000000;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-item p {
  color: #666666;
  margin-bottom: 0.5rem;
}

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

.contact-item a:hover {
  color: #666666;
}

/* Services Page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.service-item {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-item p {
  color: #666666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

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

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

  .entry-content h3 {
    font-size: 1.25rem;
  }

  .about-page,
  .contact-page {
    padding: 1rem;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.5rem;
  }

  .entry-content h1 {
    font-size: 1.5rem;
  }

  .entry-content h2 {
    font-size: 1.25rem;
  }

  .entry-content h3 {
    font-size: 1.1rem;
  }

  .about-page h2,
  .contact-page h2 {
    font-size: 1.5rem;
  }

  .service-item h3 {
    font-size: 1.25rem;
  }
}
