.elementor-303 .elementor-element.elementor-element-70d65fe2 .elementor-heading-title {
  font-family: "Poppins", Sans-serif;
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
  color: #282828;
}
  .info-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Allows items to stack on small screens */
    width: 100%;
    padding: 20px 0;
    padding-left:200px;
    padding-right:200px;
    background-color: #282828; /* Optional: Change or remove background */
  }

  .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 50px; /* Prevents icons from getting too squished */
    margin: 10px 0;
    text-align: center;
  }

  .info-icon {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    margin-bottom: 10px;
    fill: #FF9046; /* Icon color */
  }

  .info-text {
    font-family: sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #FFFFFF;
  }
    /* Main Layout Container */
    .blog-container {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .blog-header-section {
        text-align: center;
        margin-bottom: 50px;
    }

    .blog-header-section h1 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 10px;
    }

    /* The 3-Column Grid */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* Individual Card Styling */
    .blog-card {
        border: 1px solid #e1e1e1;
        border-radius: 12px;
        overflow: hidden;
        background: #ffffff;
        display: flex;
        flex-direction: column; /* Allows content to stack vertically */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

    /* Card Image */
    .blog-card img {
        width: 100%;
        height: 220px;
        object-fit: cover; /* Prevents image stretching */
        border-bottom: 1px solid #eee;
    }

    /* Content inside the card */
    .blog-card-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1; /* Makes the content area fill the card height */
    }

    .blog-date {
        font-size: 0.8rem;
        color: #007bff; /* Budget Breeze Blue */
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .blog-title {
        font-size: 1.35rem;
        margin: 0 0 12px 0;
        color: #222;
        line-height: 1.3;
    }

    .blog-intro {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 25px;
        flex-grow: 1; /* Pushes the Read More button to the bottom */
    }

    /* Button Styling */
    .read-more-btn {
        display: block;
        background-color: #007bff;
        color: #ffffff !important; /* Ensure text stays white */
        padding: 12px 15px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
        font-size: 0.9rem;
        text-align: center;
        transition: background-color 0.3s ease;
    }

    .read-more-btn:hover {
        background-color: #0056b3;
    }

    /* Responsive adjustments: 2 columns for tablets, 1 column for phones */
    @media (max-width: 992px) {
        .blog-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 650px) {
        .blog-grid { grid-template-columns: 1fr; }
        .blog-header-section h1 { font-size: 2rem; }
    }
