/* General Styles */
body {
  background-color: #000000;
  color: white;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

/* Navigation Bar */
.navbar {
  background-color: black;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  border: 2px solid transparent;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 24px;
  font-weight: 500;
}

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

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00e091;
}

.nav-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-button:hover {
  background-color: transparent;
  color: #00e091;
  border-color: #00e091;
}

/* Updated Blog Posts Section */
.blog-posts {
  padding: 120px 20px 60px;
  background-color: #000000;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-post {
  background-color: #000000;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

@media (min-width: 768px) {
  .blog-post {
      flex-direction: row;
      align-items: flex-start;
      gap: 30px;
      padding: 30px;
  }
}

.blog-image {
  flex: 1;
  min-width: 0;
}

.blog-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.blog-content {
  flex: 1;
  text-align: left;
  padding: 0 10px;
  min-width: 0;
}

@media (min-width: 768px) {
  .blog-content {
      padding: 0 0 0 20px;
  }
}

.blog-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #00e091;
}

.blog-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
}

.read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  border: 2px solid #00e091;
  transition: all 0.3s ease;
  cursor: pointer;
}

.read-more:hover {
  background-color: #00e091;
}

/* Footer Styles */
.footer {
  background-color: #0c1110;
  color: #ffffff;
  padding: 50px 0;
  border-top: 2px solid #00e091;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 0 20px;
  justify-content: space-between;
}

.footer-logo img {
  width: 50px;
  margin-bottom: 20px;
}

.footer-section {
  flex: 1;
  min-width: 300px;
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align: left;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  text-align: left;
  padding: 0;
}

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

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00e091;
}

.social-media .social-icons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 10px;
}

.social-media .social-icons a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-media .social-icons a:hover {
  color: #00e091;
}