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

body {
  font-family: "Times New Roman", Arial, Verdana, serif;
  line-height: 1.5;
  color: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #171b06;
  color: #ffffff;
  padding: 1rem 0;
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #dcded6;
}

.logo a:hover {
  color: #dcded6;
  border-bottom: 1px solid #dcded6;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  font-size: 1.5rem;
}

.nav-links a {
  color: #dcded6;
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.nav-links a:hover {
  color: #a6a7a0;
  font-size: 1.5rem;
}

.nav-links a:focus {
  outline: 2px solid #dcded6;
  outline-offset: 2px;
  opacity: 1;
  font-size: 1.5rem;
}

.nav-links a.active {
  font-weight: bold;
  font-size: 1.5rem;
}

main {
  flex: 1;
  padding: 3rem 0;
  background: #dcded6;
}

a {
  color: #171b06;
  text-decoration: none;
  border-bottom: 1px solid #171b06;
  transition: all 0.3s ease;
}

a:hover {
  color: #686c69;
  border-bottom: 1px solid #686c69;
}

a[target="_blank"]::after {
  content: " ↗";
  font-size: 0.8em;
  margin-left: 2px;
}

.float-left {
  float: left;
  margin: 0 15px 15px 0;
  max-width: 200px;
  height: auto;
  border-radius: 15%;
}

.float-right {
  float: right;
  margin: 0 15px 15px 0;
  max-width: 200px;
  height: auto;
  border-radius: 15%;
}

.hero {
  margin-bottom: 3rem;
}

.hero h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  background: #171b06;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 1rem;
  background: #171b06;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 600px;
  margin: 0 auto;
}

.hero p {
  text-align: left;
  font-size: 1.2rem;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.blog {
  margin-bottom: 3rem;
}

.blog h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: #171b06;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 600px;
  margin: 0 auto;
}

.blog h2 {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: #171b06;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 600px;
  margin: 0 auto;
}

.blog p {
  text-align: left;
  font-size: 1.2rem;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card p {
  color: #666;
  line-height: 1.7;
}

footer {
  background: #171b06;
  color: #bdc3c7;
  text-align: center;
  padding: 2rem 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-content p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

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

  .container {
    padding: 0 1rem;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
  }
}
