/* Base Styles */
* {
    box-sizing: border-box;
  }
  
  html, body {
    font-family: Roboto, Arial;
    margin: 0;
    padding: 0;
    scroll-padding-top: 125px; /* Total height of both headers */
  }
  
  /* Main Header */
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: #3cc4fa;
    z-index: 1000;
    padding: 10px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
  }
  
  /* Logo */
  .logo {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: transform 0.2s ease;
  }
  
  .logo:hover {
    transform: scale(1.02);
  }
  
  /* Search Section */
  .search-section {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
    display: flex;
    position: relative;
  }
  
  .search-bar {
    flex: 1;
    height: 40px;
    padding: 0 1.5rem;
    border: none;
    border-radius: 2rem 0 0 2rem;
    font-size: 1rem;
    box-shadow: 1px 1px 5px rgba(69, 69, 71, 0.15);
  }
  
  .search-btn {
    width: 50px;
    height: 40px;
    border: none;
    border-radius: 0 2rem 2rem 0;
    background: #e9eaeb;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .search-icon{
    width:30px;
  }
  
  .search-btn:hover {
    background: #dcddde;
  }
  
  .search-btn:active {
    transform: scale(0.98);
  }
  
  /* Navigation */
  .nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-link {
    color: #000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
  }
  
  .nav-link:hover {
    color:white;
    transition: 0.2s ease-in-out;
  }
/*Blogposts*/
  .kibuyu {
    display: flex;
    margin: 30px;
    margin-bottom: 100px;

  }
  .pic1 {
    flex: 1;
    padding: 20px;
  }

  .pic1 img {
    width: 100%; 
    height: auto; 
  }

  .blog1 {
    flex: 2;
    padding: 20px;
  }
  .blog1 h2 {
    font-size: 28px;
    margin-bottom: 5px;
  }

  .blog1 p {
    font-size: 20px;
    line-height: 1.5;
  }

/*Footer*/
  /*progress box*/
.progress-container {
  position: relative;
  background-color: #3cc4fa;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 300px;
  margin: 100px auto 0;
  border-radius: 4px;
  bottom: 85px;
}

.step {
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 0 15px;
}

.separator {
  width: 5px;
  height: 20px;
  background-color: rgb(250, 246, 246);
}

.arrow {
  color: white;
  font-size: 40px;
}

  /*Footer*/
  .newsletter-container {
    position: fixed;
    background-color: #1a237e; /* Dark blue background */
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2px auto;
    border-bottom: 2px solid #1a237e;
    bottom: 4px;
    
    width: 100%;
  }

  .newsletter-text {
    flex: 1;
    margin-right: 20px;
  }

  .newsletter-text h2 {
    margin: 0 0 5px 0;
    font-size: 24px;
  }

  .newsletter-text p {
    margin: 0;
    font-size: 14px;
  }

  .newsletter-form {
    display: flex;
    align-items: center;
  }

  .email-input {
    padding: 8px 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    width: 200px;
  }

  .signup-button {
    background-color: #3cc4fa;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
  }

  .signup-button:hover {
    background-color: #0097a7; /* Darker teal on hover */
  }
    