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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Header & Navigation */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.nav {
  display: flex;
  gap: 2rem;
  flex: 1;
}

.nav-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #1a1a1a;
}

.search-bar {
  display: flex;
  align-items: center;
  position: relative;
}

.search-input {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  width: 240px;
  transition: border-color 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: #9ca3af;
}

.search-button {
  position: absolute;
  right: 0.5rem;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
}

.search-button:hover {
  color: #1a1a1a;
}

/* Hero Section */
.hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('https://images.pexels.com/photos/7163354/pexels-photo-7163354.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  padding: 0 1.5rem;
}

.hero-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  max-width: 42rem;
  margin: 0 auto;
}

/* Filter Section */
.filter-section {
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.filter-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.filter-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.category-button {
  padding: 0.5rem 1.25rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #374151;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-button:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}

.category-button.active {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

/* Section Headers */
.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.title-underline {
  width: 60px;
  height: 4px;
  background-color: #1a1a1a;
  margin: 0 auto;
}

/* Featured Section */
.featured-section {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.featured-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.featured-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.featured-category {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.featured-excerpt {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.meta-divider {
  color: #d1d5db;
}

.read-more-button {
  padding: 0.875rem 2rem;
  background-color: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  align-self: flex-start;
}

.read-more-button:hover {
  background-color: #374151;
}

/* News Section */
.news-section {
  background-color: #f9fafb;
  padding: 4rem 0;
}

.news-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  transition: opacity 0.3s ease;
}

.news-card {
  cursor: pointer;
}

.news-card.large {
  grid-row: span 2;
}

.news-image-wrapper {
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.news-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card.large .news-image {
  height: 500px;
}

.news-card:hover .news-image {
  transform: scale(1.05);
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.news-category {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.news-title {
  font-size: 1.125rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
}

.news-card:hover .news-title {
  text-decoration: underline;
}



/* Stats Section */
.stats-section {
  background-color: #ffffff;
  padding: 5rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.stats-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}



/* Pagination */
.pagination-section {
  padding: 4rem 0;
  text-align: center;
  background-color: #f9fafb;
}

.pagination-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.page-button {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #f3f4f6;
  color: #374151;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.page-button:hover {
  background-color: #e5e7eb;
}

.page-button.active {
  background-color: #d1d5db;
  color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 968px) {
  .header-container {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 350px;
  }

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

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

@media (max-width: 768px) {
 

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .nav {
    gap: 0.75rem;
    font-size: 0.875rem;
  }

  .search-input {
    width: 180px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  


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

  .news-card.large {
    grid-row: span 1;
  }

  .news-card.large .news-image {
    height: 300px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

 
}
