.blog-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 40px;
    position: relative;
    margin-top: 40px;
}
.blog-container .top-part{
    height: 500px;
    display: flex;
    margin-top: 80px;

}
.blog-content span{
    background-color: white;
}
.top-part .left{
    width: 60%;
}
.top-part .right-part{
    width: 40%;
}
.top-part .right-part .image-container{
    width: 100%;
}
.blog-content{
    width: 80%;
    text-align: justify;
}
/* Images from CKEditor */
.blog-content img {
    width: 100%;  /* Makes the image responsive */
    max-width: 1200px;  /* Maximum width */
    max-height: 400px; /* Maximum height */
    object-fit: cover;  /* Crop the image to fit the box */
    height: auto;  /* Automatically adjust the height to maintain aspect ratio */
    border-radius: 8px; /* Optional: add rounded corners */
    display: block; /* Remove space below images */
    margin: 20px 10px; /* Add margin around images */
    padding: auto;
}
.blog-content h1{
    margin-bottom: 10px;
    color: black;
}
.blog-content p{
    line-height: 1.8; /* Set your desired line height */

}
.event-heading{
    margin-top: 100px;
    padding-left: 80px;
}
.event-details{

    height: 350px;
}
.left-align{
    text-align: left;
}
.date_location , .date,.location{
    display: flex;
    gap: 20px;
}
.blog-content .header-left{
    padding: 0px 0px;

}

.contact-section-collection{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.contact-section{
    display: flex;
    width: 100%;
    padding: 10px 50px;
    justify-content: space-between;
}
/* Contact Card */
.contact-card {
    background-color: #2e2960;
    color: white;
    width: 400px;
    height: 550px;
    margin-top: 20px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* Contact Items */
.contact-item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item i {
    font-size: 24px;
    margin-bottom: 10px;
    background-color: white;
    color: #2e2960;
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.contact-item p {
    font-size: 16px;
    margin: 0;
    color: white;
}

/* Last Item (No Margin) */
.contact-item:last-child {
    margin-bottom: 0;
}
.contact-container {
    max-width: 700px;
    width: 700px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
   
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

textarea {
    resize: none;
}

.w-80{
    width: 80%;
    justify-content: center;
}
.flex-row{
    display: flex;

}
button:hover {
    background-color: #0056b3;
}
