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

:root {
  --primary: #1a73e8;
  --primary-light: #4a90e2;
  --secondary: #f8f9fa;
  --accent: #34a853;
  --text-primary: #202124;
  --text-secondary: #5f6368;
  --background: #ffffff;
  --background-alt: #f8f9fa;
  --border: #e8eaed;
  --shadow-sm: 0 1px 2px 0 rgba(60, 64, 67, 0.1);
  --shadow-md: 0 4px 8px 0 rgba(60, 64, 67, 0.15);
  --shadow-lg: 0 8px 24px 0 rgba(60, 64, 67, 0.2);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background-color: var(--background);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 32px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}

.site-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.2s ease;
}

.site-name:hover {
  color: var(--primary);
}

.nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  display: inline-block;
  padding: 8px 20px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.938rem;
  transition: all 0.2s ease;
  border-radius: 24px;
  background-color: transparent;
}

.nav-menu a:hover {
  background-color: var(--secondary);
  color: var(--text-primary);
}

.nav-menu a.active {
  background-color: var(--primary);
  color: white;
}

.hero {
  background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.938rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: #1557b0;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--background);
  color: var(--primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  border-color: var(--primary);
}

.btn-link {
  background-color: transparent;
  color: var(--primary);
  padding: 8px 16px;
}

.btn-link:hover {
  background-color: var(--secondary);
}

.features {
  padding: 80px 0;
  background-color: var(--background);
}

.features h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 48px;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background-color: var(--background);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.intro-section {
  padding: 80px 0;
  background-color: var(--background-alt);
  text-align: center;
}

.intro-section h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.intro-section p {
  max-width: 800px;
  margin: 0 auto 16px;
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-hero {
  background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.content-section {
  padding: 80px 0;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.875rem;
  font-weight: 600;
}

.content-wrapper p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 1.063rem;
  line-height: 1.7;
}

.content-list {
  list-style-position: inside;
  margin: 16px 0;
  color: var(--text-secondary);
}

.content-list li {
  margin-bottom: 8px;
  padding-left: 16px;
  line-height: 1.6;
}

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

.info-card {
  background-color: var(--background-alt);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: transform 0.2s ease;
}

.info-card:hover {
  transform: translateX(4px);
}

.cta-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  padding: 48px 32px;
  border-radius: 12px;
  text-align: center;
  margin: 48px 0;
  border: 1px solid var(--border);
}

.cta-box h3 {
  margin-bottom: 12px;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cta-box p {
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-size: 1.063rem;
}

.reporters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.reporter-card {
  background-color: var(--background);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.reporter-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.reporter-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-light);
}

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

.reporter-card h3 {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 1.375rem;
  font-weight: 600;
}

.reporter-title {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.reporter-bio {
  color: var(--text-secondary);
  font-size: 0.938rem;
  line-height: 1.6;
}

.additional-note {
  text-align: center;
  padding: 32px;
  background-color: var(--background-alt);
  border-radius: 12px;
  margin-top: 32px;
}

.additional-note p {
  color: var(--text-secondary);
  font-size: 1.063rem;
  font-style: italic;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.news-card {
  background-color: var(--background);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--secondary);
}

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

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

.news-content {
  padding: 24px;
}

.news-category {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-content h2 {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4;
}

.news-meta {
  color: var(--text-secondary);
  font-size: 0.813rem;
  margin-bottom: 12px;
}

.news-excerpt {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 0.938rem;
}

.contact-cta {
  text-align: center;
  padding: 48px 32px;
  background-color: var(--background-alt);
  border-radius: 12px;
}

.contact-cta h2 {
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 600;
}

.contact-cta p {
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-section h2,
.contact-info-section h2 {
  color: var(--text-primary);
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 1.875rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.938rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.938rem;
  transition: all 0.2s ease;
  background-color: var(--background);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
  font-size: 0.938rem;
}

.form-message.success {
  background-color: #e6f4ea;
  color: #137333;
  border: 1px solid #b7e1cd;
  display: block;
}

.form-message.error {
  background-color: #fce8e6;
  color: #c5221f;
  border: 1px solid #f7c9c7;
  display: block;
}

.contact-info-block {
  margin-bottom: 32px;
}

.contact-info-block h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-info-block p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-info-block a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-block a:hover {
  color: #1557b0;
  text-decoration: underline;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-list {
  list-style-position: inside;
  margin: 16px 0 24px 16px;
  color: var(--text-secondary);
}

.legal-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.footer {
  background-color: var(--text-primary);
  color: white;
  padding: 48px 0 24px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h3 {
  margin-bottom: 16px;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-section h4 {
  margin-bottom: 16px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.938rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.938rem;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: static;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    display: none;
    gap: 8px;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

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

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .reporters-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .features,
  .intro-section,
  .content-section {
    padding: 48px 0;
  }
}
