.content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.image-text-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
}

.circular-img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    margin-top: 0px;
    border-radius: 50%;
    flex-shrink: 0;
}

.text-content {
    flex: 1;
    text-align: justify;
    line-height: 1.6;
}

 .button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
/*
.btn-primary {
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
} */
.conference-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.conference-item {
    position: relative;
    margin-bottom: 30px;
    padding: 20px 20px 20px 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #F4B347;
}

.conference-date {
    display: inline-block;
    background: #232A71;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.conference-title {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 1.2em;
    line-height: 1.4;
}

.conference-subtitle {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.conference-details {
    color: #555;
}

.conference-details p {
    margin: 8px 0;
    line-height: 1.5;
}

.conference-details strong {
    color: #34495e;
    margin-right: 5px;
}

/* Hover effect */
.conference-item:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    .conference-item {
        padding: 15px 15px 15px 20px;
        margin-bottom: 20px;
    }

    .conference-title {
        font-size: 1.1em;
    }

    .conference-details {
        font-size: 0.95em;
    }
}

/* Optional: Timeline dots */
.conference-item::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 30px;
    width: 8px;
    height: 8px;
    background: #232A71;
    border-radius: 50%;
    transform: translateX(-50%);
}
/* Responsive design */
@media (max-width: 768px) {
    .image-text-container {
        flex-direction: column;
        align-items: center;
    }

    .circular-img {
        width: 200px;
        height: 300px;
        margin-bottom: 0px;
    }

    .text-content {
        text-align: left;
    }
}
.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.event-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    margin-left: 50px;
}

.event-date {
    position: absolute;
    left: -50px;
    top: 20px;
    background: #F4B347;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    transform: translateX(-100%);
    margin-right: 20px;
    white-space: nowrap;
}


.event-title {
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-size: 1.25rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-label {
    font-weight: bold;
    min-width: 120px;
    color: #34495e;
}

.detail-content {
    flex: 1;
    font-style: italic;
    color: #666;
}

/* Responsive design */
@media (max-width: 768px) {
    .detail-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-label {
        min-width: auto;
    }
}
