body {
    max-width: 40em;
    margin: 0 auto;
    padding: 5px;
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 30px;
    color: #000;
}

h1,
h2,
h3 {
    font-family: Georgia, serif;
    font-weight: normal;
}

.content-section {
    margin: 3em 0;
}

.my-image {
    max-width: 100%;
    height: auto;
    display: block;
    width: auto;  /* Set to a suitable width, adjust as needed */
    margin: 0 auto; /* Optional: to center the image */
}

a {
    color: purple; /* Default link color, replace with your desired color */
    text-decoration: none; /* Optional: remove underline */
}

a:visited {
    color: purple; /* Replace with your desired color for visited links */
}

a:hover {
    text-decoration: underline; /* Add underline on hover */
    color: none; /* Inherit color from the default state */
}

a:active {
    color: orange; /* Replace with your desired color for active state */
}

/* General blockquote styling */
blockquote {
    font-style: italic;
    color: #555555;
    border-left: 5px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "“" "”" "‘" "’";
}

blockquote:before {
    content: open-quote;
    font-size: 2em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
    color: #ccc;
}

blockquote:after {
    content: close-quote;
    font-size: 2em;
    line-height: 0.1em;
    margin-left: 0.25em;
    vertical-align: -0.4em;
    color: #ccc;
}

/* Styling for quotes within a paragraph */
q {
    quotes: "“" "”" "‘" "’";
}

q:before {
    content: open-quote;
    color: #ccc;
}

q:after {
    content: close-quote;
    color: #ccc;
}

/* list styling */
.list {
    list-style-type: disc; /* Bullet points */
    margin-left: 20px; /* Indentation */
}

/* Styling for list items within .list */
.list li {
    margin-bottom: 10px; /* Space between questions */
    color: #333; /* Text color */
}

 /* Footer styles */
 footer {
    border-top: 1px solid #ccc;
    padding-top: 10px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #555;
}

figcaption {
    text-align: left;
    font-style: italic;
    margin-top: 5px;
}

.sub-heading {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 0.5em;
}

.side-note {
    background-color: #f9f9f9;
    border-left: 4px solid #ff6f61;
    padding: 10px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.hampi-pre-end-note {
    font-style: italic;
    color: #333;
    font-size: 0.9em;
    padding: 10px;
    margin: 15px 0;
    border-left: 3px solid #007bff;
}

.hampi-pre-end-note-2 {
    font-style: italic;
    color: #333;
    font-size: 0.9em;
    padding: 10px;
    margin: 15px 0;
}

.thank-you-section {
    background-color: #f0f8ff; /* Light background color for a soft appearance */
    border: 2px solid #ff6f61; /* Highlight border color */
    border-radius: 8px; /* Rounded corners for a modern look */
    padding: 20px; /* Space inside the section */
    margin: 30px 0; /* Space around the section */
    text-align: center; /* Center align text */
}

.thank-you-section h3 {
    color: #ff6f61; /* Heading color to match the border */
    font-size: 1.8em; /* Larger font size for prominence */
    margin-bottom: 15px; /* Space below the heading */
}

.thank-you-section p {
    color: #333; /* Dark text color for readability */
    font-size: 1.2em; /* Slightly larger font size */
    line-height: 1.6; /* Increased line height for better readability */
}