html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
    background-color: #F1F1F1;
    color: #1F1E1D;
    margin: 0;
    padding: 0;
    font-size: 100%; /* Base font size */
}

h1, .main-title {
    font-family: 'Arial', sans-serif;
    font-size: 2rem;
    color: #1F1E1D;
    font-weight: 500; /* Slightly stronger than normal but not bold */
}

.italic-text {
    font-style: italic;
    font-size: 1rem;
    font-weight: 500; /* Adjust for italic text as well */
}

.about-section {
    padding: 1rem;
    margin: 1rem auto;
    max-width: 800px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    font-weight: 500; /* Apply to general text in about section */
    text-align: justify;
}

.about-section h1, .about-section h2, .about-section p {
    color: #333;
    line-height: 1.6;
    font-weight: 500; /* Apply to headings and paragraphs in about section */
}

.about-section h2 {
    font-size: 1.5rem;
}

.title-section {
    text-align: center;
    padding: 1rem;
}

.title-underline {
    height: 3px;
    width: 50%;
    background-color: #ED8F58;
    margin: 0.5rem auto;
}

.logo-section {
    text-align: center;
    padding: 1rem;
}

.about-logo {
    max-width: 200px;
    height: auto;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's above everything else */
}

.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}