body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
header {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
}
header img {
    width: 7%;
    max-height: 85px;
    object-fit: cover;
}
header h1 {
    margin: 10px 0 5px;
}
header p {
    margin: 0;
    font-style: italic;
}

/* NAV MENU */
nav {
    background: #34495e;
    display: flex;
    justify-content: center;
}
nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
}
nav a:hover {
    background: #1abc9c;
    cursor: pointer;
}

/* SECTIONS */
section {
    padding: 20px;
    display: none;
    border: 2px solid #bcbccb;
    border-radius: 5px;
    cursor: pointer;
}
section.active {
    display: block;
    background-color: #9fecf1; /* color for Section background except header */
    font: bold 1.0em sans-serif;
    border: 2px solid #bcbccb;
    border-radius: 5px;
    cursor: pointer;
}

/* VERSE */
#verseBox {
    background: #f4f4f4;
    padding: 10px;
    text-align: center;
    font-style: italic;
}

.highlight {
    background: #f3d9d9;
    padding: 10px;
    text-align: center;
    font-style: bold;
    box-sizing: border-box;
}
.goodnewscontent {
    text-align: center;
}

/* for two columns in Good News Section */
.twoColumns {
    display: flex;
    justify-content: center;
}
.column {
    width: 40%; /* Adjust width as needed */
    padding: 10px; /* Optional padding */
}

/* POPUP */
.popup {
    position: fixed;
    top: 40%;
    left: 40%;
    transform: translate(-40%, -40%);
    background: white;
    width: 60%;
    max-height: 90%;
    border: 2px solid #333;
    display: none;
    flex-direction: column;
    z-index: 1000;
}
.popup-header {
    background: #34495e;
    color: white;
    padding: 10px;
    cursor: move;
    display: flex;
    justify-content: space-between;
}
.popup-body {
    padding: 10px;
    overflow: auto;
}
.popup iframe, .popup img {
    width: 100%;
    height: 400px;
}

/* CLOSE BUTTON */
.close-btn {
    cursor: pointer;
}

/* FORM */
form input, form textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    text-align: left
}
form button {
    padding: 10px 20px;
    background: #0e816a;
    color: white;
    box-sizing: border-box;
    font: bold 0.6em sans-serif;
    border: 2px solid #bcbccb;
    border-radius: 5px;
    cursor: pointer;
    transform: rotate(-1.5deg);
}

/* MAP */
iframe.map {
    width: 100%;
    height: 300px;
    border: 0;
}


