#about-text {
    display: block !important; /* Ensure visibility */
    visibility: visible !important;
    opacity: 1 !important;
    color: black; /* Make sure text is not blending with the background */
    font-size: 18px; /* Adjust size for visibility */
}


.about-section {
    background-color: rgba(240, 248, 245, 0.8); /* Soft background color for contrast */
    border: 2px solid #075e54; /* Matches the overall theme */
    border-radius: 10px; /* Smooth rounded corners */
    padding: 30px; /* Adds space inside the section */
    max-width: 800px; /* Limits the width for readability */
    margin: 30px auto; /* Centers the section and adds vertical spacing */
    text-align: center; /* Centers the content inside the section */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    font-family: 'Noto Sans Georgian', sans-serif; /* Consistent font */
}

/* Style the H1 */
.about-section h1 {
    font-family: 'BPGArialCaps2010', sans-serif; /* Matches header font */
    font-size: 36px; /* Larger text size */
    color: #075e54; /* Dark green text color */
    margin-bottom: 20px; /* Adds spacing below the heading */
    text-transform: uppercase; /* Makes the text all caps */
    letter-spacing: 2px; /* Adds spacing between letters */
}

/* Add paragraph styling (if any text follows the heading) */
.about-section span {
    font-size: 20px; /* Standard font size */
    color: #333; /* Neutral color for readability */
    line-height: 1.8; /* Improves text readability */
    margin: 0 10px; /* Adds horizontal padding */
}
