body {
    background-color: black;
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 48px;
    margin: 0;
    padding: 0;
}

.heading {
    text-align: center;
    margin-bottom: 50px; /* Add bottom margin to create space */
}
.heading h1 {
    margin: 50px 0px 20px 0px; /* Remove negative margin and add positive bottom margin */
}
.heading-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
}

.heading-icon-left,
.heading-icon-right {
    margin-top:100px;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.content {
    padding: 30px 5%; /* Reduce top padding since we added margin to heading */
    max-width: 1800px;
    margin: 0 auto;
}

.content h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2em;
}

/* Blog Post Styles */
.blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 30px; /* Margin between blog posts */
}

.blog-post {
    background-color: #1a1a1a;
    width: 100%;
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #333;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: #555;
}

.blog-title {
    text-align: center;
    font-size: 2em;
    margin: 0 0 20px 0;
    color: white;
    font-weight: 600;
}

.blog-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.blog-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.blog-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.blog-text p {
    font-size: 0.7em;
    line-height: 1.6;
    margin: 0;
    color: #e0e0e0;
}

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

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    body {
        font-size: 24px;
    }
    
    .heading h1 {
        font-size: 2em;
        margin: 20px 0;
    }
    
    .heading-title {
        gap: 50px;
        flex-wrap: wrap;
    }
    
    .heading-icon-left,
    .heading-icon-right {
        width: 40px;
        height: 40px;
        margin-top: 20px;
    }
    
    .content {
        padding: 20px 5%;
    }
    
    .content h1 {
        font-size: 2em;
    }
    
    .blog-content {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .blog-title {
        font-size: 1.5em;
    }
    
    .blog-text p {
        font-size: 1em;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    body {
        font-size: 18px;
    }
    
    .heading h1 {
        font-size: 1.5em;
    }
    
    .heading-title {
        gap: 20px;
    }
    
    .heading-icon-left,
    .heading-icon-right {
        width: 30px;
        height: 30px;
    }
    
    .content {
        padding: 10px 3%;
    }
    
    .blog-post {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.3em;
    }
}