body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /*background-color: #f0f0f0;*/
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    padding-bottom: 40px; /* Space at the bottom of the page */
    padding-top: 10px; /* Adds 10px space at the top */
}

.header {
    margin-bottom: 30px;
}

.header h1 {
    font-size: 60px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.header h3 {
    font-size: 32px;
    color: #666;
    margin: 10px 0 50px 0;
}

.intro-text {
    border: 4px solid #333;
    padding: 20px; /* Slightly more padding for a bigger frame */
    margin: 0 auto 50px auto;
    max-width: 620px;
    background-color: #f9f9f9; /* Light gray background for subtle contrast */
}

.intro-text p {
    font-size: 23px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0; /* Adds 8px space below each paragraph */
    line-height: 1.5; /* Increased from 1.4 for better readability */
    font-family: 'Merriweather'; /* New font */
    letter-spacing: 0.3px; /* Slight spacing for elegance */
}

.intro-text p:last-child {
    margin-bottom: 0; /* Removes extra margin from the last paragraph */
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px; /* Increased from 20px to 30px */
}

.image-with-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-with-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    width: 100%;
    text-align: center;
}

.image-with-title img {
    max-width: 300px;
    height: auto;
    border: 2px solid #333;
}

.text {
    margin-top: 20px;
    max-width: 930px; /* 1.5 times image-row width */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px; /* Increased from 40px to 60px */
}

.text p {
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.preview-text {
    display: block;
    font-size: 36px;
    font-weight: bold;
}

.full-text {
    display: none;
    font-size: 18px;
    margin-top: 15px;
}

.toggle-text {
    font-size: 20px;
    color: #333;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 10px;
}

.toggle-text:hover {
    color: #666;
}

a {
    color: #0066cc; /* Blue color for links */
    text-decoration: underline;
}

a:hover {
    color: #003366; /* Darker blue on hover */
}

/* Summary Block Styling */
.summary {
    border: 4px solid #333; /* Matches intro-text */
    padding: 20px; /* Matches intro-text */
    margin: 0 auto 50px auto; /* Matches intro-text, increased bottom spacing */
    max-width: 620px; /* Matches intro-text */
    background-color: #f9f9f9; /* Matches intro-text */
}

.summary h2 {
    font-size: 36px; /* Larger than paragraph text (23px) */
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0; /* Space below title */
    text-align: center;
}

.summary p {
    font-size: 23px; /* Matches intro-text */
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0; /* spacing below */
    line-height: 1.5; /* Matches intro-text */
    font-family: 'Merriweather'; /* Matches intro-text */
    letter-spacing: 0.3px; /* Matches intro-text */
}

.summary p:last-child {
    margin-bottom: 0; /* Matches intro-text */
}

/* About Block Styling */
.about {
    border: 4px solid #333; /* Matches intro-text */
    padding: 20px; /* Matches intro-text */
    margin: 0 auto 40px auto; /* Matches intro-text, slightly less bottom margin for page end */
    max-width: 620px; /* Matches intro-text */
    background-color: #f9f9f9; /* Matches intro-text */
}

.about h2 {
    font-size: 36px; /* Larger than paragraph text (23px) */
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0; /* Space below title */
    text-align: center;
}

.about p {
    font-size: 23px; /* Matches intro-text */
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0; /* Matches intro-text spacing */
    line-height: 1.5; /* Matches intro-text */
    font-family: 'Merriweather'; /* Matches intro-text */
    letter-spacing: 0.3px; /* Matches intro-text */
}

.about p:last-child {
    margin-bottom: 0; /* Matches intro-text */
}