body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #5665a3;
    color: white;
    padding: 20px;
    text-align: center;
}

h1 {
    margin: 0;
}

h2 {
    color: #333;
}

p {
    color: #555;
}

.highlight {
    color: #5665a3;
    font-style: italic;
}

.book-info {
    padding: 20px;
    text-align: justify;
}

.component {
    padding: 20px;
    background-color: #bfc7e8;
    margin: 20px 0;
}

.container21 {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Unequal columns */
    place-items: center;    /* Centers both vertically and horizontally */
    gap: 20px; /* Space between the frames */
}

.container111 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 equal columns */
    place-items: top;    /* Centers both vertically and horizontally */
    gap: 10px; /* Space between the frames */
}

.container12 {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Unequal columns */
    place-items: center;    /* Centers both vertically and horizontally */
    gap: 20px; /* Space between the frames */
}

.frame {
    padding: 20px;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
}

.frame-left {
    background-color: #c8e6c9;
}

.frame-right {
    background-color: #ffe0b2;
}

/* Style the image to fit the left frame */
.frame-image img {
    width: 100%; /* Make image fit the width of the frame */
    height: auto; /* Maintain the aspect ratio */
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5665a3;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.button-link:hover {
    background-color: #45a049;
}

/* Style for the text with the hover trigger */
.hover-text {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Initially hide the tooltip */
.hover-text .tooltip {
    visibility: hidden;
    width: 160px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position the tooltip above the text */
    left: 50%;
    margin-left: -80px;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Show the tooltip on hover */
.hover-text:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/* Optional arrow on the tooltip */
.hover-text .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}
  
.faq {
    padding: 20px;
    margin: 20px 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    margin: 0;
    font-size: 1.2em;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #5665a3;
    color: white;
    margin-top: 40px;
}


/* JUNK FOLLOWS */

.contact {
    padding: 20px;
    background-color: #fff;
}
