/* CSS styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

#header {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#header img {
    max-width: 20%;
    height: auto;
}

#container {
    /*display: flex;*/
    flex: 1;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 5px;
    align-items:flex-start ;
    width: auto;
}

#content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: auto;
}

#contentPage2 {
    flex: 1;
    padding: 20px;
    margin: 10px;
}

#left-screen {
    flex: 1;
    padding: 20px;
    margin: 10px;
    max-width: 50%; /* Adjust as needed */
}

#left-screen img {
    max-width: 100%;
    height: auto;
}

#right-screen {
    flex: 1;
    padding: 20px;
    margin: 10px;
    background-color: #fff;
}

h1 {
    margin-top: 0;
}

h2 {
    color: #e20a17;
}

.rectangle-box {
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

ul {
    list-style-type: square;
    padding: 0px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

label {
    display: block;
    margin-bottom: 10px;
}

.radio-group {
    display: flex;
    justify-content: left;
}

/* Style for toggle switch */
.toggle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
    display: inline-block;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #007bff;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#contactForm div {
    margin-bottom: 10px;
}

/* Hide the content initially */
.hidden-content {
    display: none;
}