/* Basic Reset and Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Header and Buttons */
header {
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid #47a13e;
    margin-bottom: 20px;
}

.main-title {
    font-size: 3em;
    margin-bottom: 10px;
}

.register-button {
    display: inline-block;
    padding: 24px 48px;
    background-color: #00bfda;
    font-size: 2.5em;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.register-button:hover {
    background-color: #0093a8;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #47a13e;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: #388031;
}

/* Section Styling */
.agenda-section h2, .description-section h2, .panelist-bio h4 {
    color: #47a13e;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 5px;
}

ul ul {
    list-style-type: circle;
    margin-left: 20px;
    margin-top: 5px;
}

.description-section {
    padding-top: 20px;
    border-top: 2px solid #00bfda;
    margin-bottom: 40px;
}

/* Location Section specific styling */
.location-sub-section {
    padding-bottom: 20px;
}

.location-sub-section h3 {
    margin-top: 0;
    color: #00bfda;
}

.location-sub-section:not(:last-child) {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.location-sub-section:last-child {
    border-bottom: none;
}

.location-sub-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}

.location-text {
    flex: 1;
    min-width: 300px;
}

.location-image img {
  max-width: 50%; /* Ensures the image never exceeds the width of its container */
  height: auto;
}

/* Panelists Section specific styling */
.panelist-bio {
    margin-bottom: 30px;
}

.panelist-bio h4 {
    margin-top: 0;
    color: #00bfda;
}

/* Contact Section specific styling */
.contact-section p {
    margin: 5px 0;
}

/* Back to Top Link */
.back-to-top {
    display: block;
    margin-top: 20px;
    text-align: right;
    color: #47a13e;
    text-decoration: none;
}

.back-to-top:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 2px solid #47a13e;
    margin: 40px 0;
}