    .site-footer {
      background: #0a0a0a;
      color: #ccc;
      padding: 2rem 1rem;
      font-family: 'Outfit', sans-serif;
    }

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

    .footer-container h4 {
      margin-bottom: 0.5rem;
      color: #fff;
    }

    .footer-container ul {
      list-style: none;
      padding: 0;
    }

    .footer-container li {
      margin: 0.3rem 0;
    }

    .footer-container a,
    .footer-container button {
      color: #ccc;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      text-decoration: none;
      transition: color 0.2s;
      font-family: 'Outfit', sans-serif;
    }

    .footer-container a:hover,
    .footer-container button:hover {
      color: #00b4d8;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.9rem;
      color: #888;
    }

    .email-modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      justify-content: center;
      align-items: center;
    }

    .email-modal-content {
      background-color: #111;
      padding: 2rem;
      border-radius: 12px;
      text-align: center;
      color: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }

    .email-modal-content code {
      background: #222;
      padding: 0.3rem 0.6rem;
      border-radius: 6px;
      color: #00b4d8;
      font-size: 1.1rem;
    }

    .close-button {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 1.5rem;
      cursor: pointer;
    }

    .contact-button {
      font-size: 1rem;
      padding: 0.2rem 0.6rem;
    }

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.main-header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ccc;
}

.main-header .logo img {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #333;
  font-weight: 700;
  padding: 10px;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #ff5252;
}

/* Hero Section */
.hero {
  background-color: #f8f8f8;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #666;
}

/* Blog Posts Section */
.blog-posts {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.post {
  display: flex;
  margin-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 40px;
}

.post img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  margin-right: 30px;
}

.post-content {
  max-width: 800px;
}

.post-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.post-content .date {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.post-content .excerpt {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

.read-more {
  color: #ff5252;
  font-weight: bold;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #ff7979;
}

/* Footer */
footer {
  background-color: #ffffff;
  text-align: center;
  padding: 20px;
  color: #333;
  border-top: 1px solid #ccc;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .post {
    flex-direction: column;
    align-items: center;
  }

  .post img {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .post-content {
    text-align: center;
  }
}
