.flightbid-header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 0.5rem 0;
}

.flightbid-header img {
    display: inline-block;
    height: 40px;
    width: auto;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f0f2f5;
    color: #333;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #0056b3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 1.75rem;
    color: #004080;
    font-weight: 600;
    margin-bottom: 1rem;
}

h5 {
    margin-top: 2rem;
    font-weight: 600;
}

section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.highlight {
    background-color: #f8f9fc;
    padding: 1.5rem;
    border-left: 6px solid #007bff;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.pro-tip {
    margin-top: 1.5rem;
    background-color: #eaf7ff;
    border-left: 5px solid #17a2b8;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
}

.pro-tip::before {
    content: "💡 Pro Tip: ";
    font-weight: bold;
}

#blog img {
    max-width: 1076px;
    max-height: 605px;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img:hover {
    transform: scale(1.03);
}

ul {
    padding-left: 1.25rem;
}

ul li {
    margin-bottom: 0.5rem;
}

.conclusion {
    font-size: 1.2rem;
    margin-top: 3rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.pill-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.pill-btn:hover {
    background-color: #0056b3;
    text-decoration: none;
}


@media (max-width: 767px) {
    h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 1.5rem;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.3rem;
}
.social-links a {
    color: #555;
    font-size: 1.5rem;
    transition: color 0.2s;
}
.social-links a:hover {
    color: #007BFF;
}
/* --- Additions & Minor Tweaks to Match Requested Styles --- */

/* h1: Slightly smaller on mobile as requested */
@media (max-width: 767px) {
    h1 {
      font-size: 1.4rem !important;
    }
    section {
      padding: 1.2rem !important;
    }
    .conclusion {
      font-size: 1rem !important;
      padding: 1rem !important;
    }
  }
  
  /* h2: Ensure slightly smaller than desktop, and margin-top as in request */
  h2 {
    font-size: 1.45rem !important;
    color: #004080 !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }
  
  /* .winner-tip, equivalent to your requested .winner-tip style */
  .winner-tip {
    margin-top: 1.2rem;
    background-color: #e6fcef;
    border-left: 5px solid #27ae60;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #138c47;
  }
  .winner-tip::before {
    content: "🏆 Winner: ";
    font-weight: bold;
  }
  
  /* .lead: Make sure intro text stands out */
  .lead {
    font-size: 1.18rem;
    color: #444;
    font-weight: 400;
    margin-bottom: 1.7rem;
  }
  
  /* Tables: for clarity, match spacing and centering */
  table {
    background: #fff;
    border-radius: 10px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
  }
  
  th, td {
    text-align: center;
  }
  
