/* * This is the basic style sheet (style.css) referenced by gce-maths.html.
* It provides common layout and typography defaults.
*/

:root {
    --primary-color: #5b5ff7; /* General Portal Primary Color */
    --background-color: #f4f7f9;
    --text-color: #34495e;
    --card-color: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

.content-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

h2 {
    color: var(--primary-color);
    border-bottom: 3px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 700;
}

h3 {
    color: var(--text-color);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Base Summary Box Style */
.summary-box {
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 1em;
    line-height: 1.6;
}