body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
/* CSS for positioning the logo */
.logo {
    position: absolute;
    bottom:4rem;
    left: 10px;
    width: 8rem; /* Adjust size as needed */
    height: 8rem;
}

/* Make sure the header has enough padding to accommodate the logo */
header {
    position: relative;
    padding-left: 70px; /* Adjust to make space for the logo */
    text-align: center;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

h2 {
    color: #3498db;
    font-weight: normal;
}

.divider {
    border-top: 2px solid #eee;
    margin: 30px 0;
}

.intro-question {
    font-style: italic;
    font-size: 1.1em;
    color: #2c3e50;
}

.section-title {
    color: #3498db;
    margin: 25px 0 15px;
}

.webinar-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: white;
}

.webinar-title {
    font-size: 1.3em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.webinar-description {
    margin-bottom: 15px;
}

.timezone-display {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.slots-container {
    margin-top: 15px;
}

.slot {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 8px 0;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.slot.unavailable {
    opacity: 0.6;
}

.slot label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.slot input[type="radio"] {
    margin-right: 10px;
}

.calendar-links {
    margin-left: 25px;
    font-size: 0.9em;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.calendar-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.calendar-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.calendar-links span {
    color: #666;
    margin: 0 5px;
}

.register-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s;
    font-size: 1em;
}

.register-btn:hover {
    background-color: #2980b9;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}
.modal-content2 {

    margin: 5% auto;
   
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: black;
}

#emailForm input[type="email"] {
    width: 95%;
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

#emailForm button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1em;
}

#emailForm button:hover {
    background-color: #2980b9;
}

.zoom-link-container {
    margin: 15px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: center;
}

.zoom-link-container a {
    color: #3498db;
    font-weight: bold;
    text-decoration: none;
}

.zoom-link-container a:hover {
    text-decoration: underline;
}

.warning-note {
    color: #e67e22;
    font-style: italic;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20% auto;
    }
    
    .slot {
        padding: 8px;
    }
    
    .calendar-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .calendar-links span {
        display: none;
    }
}