/* Topbar */
.topbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
}

/* Main content container */
.container.reiki-content {
    width: 60%;
    margin: 20px auto;
    padding: 20px;
    background: rgba(13, 27, 42, 0.8);
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    color: #b3c5d9;
    text-align: left;
    overflow: hidden;
}

/* Headings */
.container.reiki-content h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #b3c5d9;
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5);
    text-align: center;
}

.section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
    align-items: start;
}

.section img {
    width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.section .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section .text-content h3 {
    font-size: 1.5em;
    color: #e0e5ec;
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.section .text-content p,
.section .text-content ul {
    line-height: 1.6;
    color: #d0d8e4;
    margin-bottom: 10px;
}

/* Image position classes */
.image-left {
    order: -1; /* Place image in the first grid column */
}

.image-right {
    order: 1; /* Place image in the second grid column */
}

/* Hide scrollbar */
::-webkit-scrollbar {
    display: none;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .section {
        grid-template-columns: 1fr;
    }

    .container.reiki-content {
        width: 90%;
    }
}
