@import url('inline-font1_1'); /* Example fonts */ :root { --primary-color: #0D1B2A; /* Dark Blue */ --secondary-color: #1B263B; /* Slightly Lighter Blue */ --accent-color: #E0E1DD; /* Light Gray/Off-white */ --highlight-color: #415A77; /* Muted Blue/Gray */ --text-color: #F0F0F0; /* Light text for dark background */ --heading-font: 'Lato', sans-serif; --body-font: 'Roboto', sans-serif; } body { font-family: var(--body-font); margin: 0; padding: 0; background-color: var(--primary-color); color: var(--text-color); line-height: 1.7; font-size: 16px; /* Base font size */ } .container { max-width: 900px; /* Content width */ margin: 0 auto; padding: 20px; background-color: var(--secondary-color); /* Slightly different background for content area */ box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); } h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); color: var(--accent-color); margin-top: 1.5em; margin-bottom: 0.8em; line-height: 1.3; font-weight: 700; } h1 { font-size: 2.8em; text-align: center; border-bottom: 2px solid var(--highlight-color); padding-bottom: 10px; margin-top: 0; color: #FFFFFF; /* Make main title white */ } h2 { font-size: 2.2em; color: var(--accent-color); border-left: 4px solid var(--highlight-color); padding-left: 10px; } h3 { font-size: 1.6em; color: var(--highlight-color); } p { margin-bottom: 1.2em; text-align: justify; } a { color: var(--highlight-color); text-decoration: none; transition: color 0.3s ease; } a:hover { color: var(--accent-color); text-decoration: underline; } ul, ol { margin-bottom: 1.2em; padding-left: 25px; } li { margin-bottom: 0.6em; } img { max-width: 100%; /* Responsive images */ height: auto; display: block; margin: 30px auto; /* Center images with space */ border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); } .img-description { text-align: center; font-style: italic; margin-top: -20px; /* Pull description closer to image */ margin-bottom: 30px; color: #AAAAAA; /* Lighter color for description */ font-size: 0.9em; } section { margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px dashed var(--highlight-color); /* Separator between sections */ } section:last-child { border-bottom: none; /* No border for the last section */ } .cta-button { /* Example button style */ display: inline-block; background-color: var(--highlight-color); color: var(--accent-color); padding: 12px 25px; border-radius: 5px; text-align: center; font-weight: bold; margin-top: 15px; transition: background-color 0.3s ease, transform 0.2s ease; } .cta-button:hover { background-color: #5A7AA0; /* Slightly lighter hover state */ color: #FFFFFF; text-decoration: none; transform: translateY(-2px); } /* Responsive Design */ @media (max-width: 768px) { h1 { font-size: 2.2em; } h2 { font-size: 1.8em; } h3 { font-size: 1.4em; } body { font-size: 15px; } .container { padding: 15px; } } @media (max-width: 480px) { h1 { font-size: 1.8em; } h2 { font-size: 1.5em; } h3 { font-size: 1.2em; } body { font-size: 14px; } .container { padding: 10px; } p { text-align: left; /* Justify might look odd on very small screens */ } } /* Style for FAQ questions */ .faq-question { font-weight: bold; color: var(--accent-color); margin-top: 1em; }