* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.event-details-section {
    padding: 60px 0;
    overflow: hidden;
}

.event-details-section h2 {
    font-size: 40px;
    color: blue;
}

/* Title */
.line {
    width: 110px;
    height: 4px;
    background: linear-gradient(90deg, #ff5f6d, #ff9966);
}
.line1 {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff5f6d, #ff9966);
    margin-top: -25px !important;
}
.event-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid black;
}

.event-box h3 {
    margin: 25px 0px;
    font-size: 30px;
    color: blue;
}
.event-box p {
    font-size: 18px;
    color: #434343;
    line-height: 1.6;
    text-align: justify;
}
.event-box h4 {
    margin: 30px 0px 20px;
    font-size: 30px;
    color: blue;
}

.event-img {
    width: 90%;
    height: 350px;
    border-radius: 8px;
    margin-bottom: 20px;
    margin: 0 auto !important;
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
}

.event-gallery img {
    width: 100%;
    border-radius: 6px;
}

.event-sidebar {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    position: sticky;
    top: 20px;
    border: 1px solid black;
}

.event-sidebar ul {
    list-style: none;
    padding: 0;
}

.event-sidebar ul li {
    margin-bottom: 10px;
    font-size: 15px;
}
