html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
body {
  margin-bottom: 60px;
}
.sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #015f61;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar h4 {
    color: #015f61;
}

.committee-member {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.committee-member img {
    width: 200px;
    height: 200px;
    margin-right: 20px;
    object-fit: fill;
}

.conference-section {
    background-color: #f7f9fc;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-content p.intro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    /*color: #003b49;*/
    text-align: justify;
    margin-bottom: 30px;
}

.conference-objectives-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #003b49;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.objectives-list p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}



@media (max-width: 768px) {
    .conference-section {
        padding: 20px;
    }

    .conference-objectives-heading {
        font-size: 1.8rem;
    }

    .text-content p.intro-text {
        font-size: 1rem;
    }
}

.president-message-section {
    background-color: #f4f7fa;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.message-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.message-text p strong {
    color: #007bff;
}

.text-right {
    text-align: right;
}
.text-secondary {
    color: #34495eed;
}

@media (max-width: 768px) {
    .president-message-section {
        padding: 20px;
    }

    .message-heading {
        font-size: 2rem;
    }

    .president-info p {
        font-size: 1rem;
    }

    .message-text p {
        font-size: 1rem;
    }
}

/*strong {
    color: #34495eed;
}*/

.dropdown:hover > .dropdown-menu {
    display: block;
}
