/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Basic styling for the body */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fcfcfc;
}


.about-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.06);
    border: 1.2px solid #e4e4e4;
    border-radius: 12px;
}

.about-section h2 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
}

.goal-section h3, .contact-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.goal-section p, .contact-section p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
}

.about-section h3 {
    font-size: 1.2rem;      /* or 0.95rem */
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 5px;
}
