/* Import a clean, professional Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* General Typography */
body, h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    color: #333; /* Neutral text color for readability */
    border: 1px solid #1DB7FF;
    padding: 5px;
    text-align: left;
}

body {
    font-size: 16px; /* Adjust to a comfortable base size */
    line-height: 1.6; /* Improve text readability */
    background-color: #f9f9f9; /* Light background for a clean look */
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 48px; /* Adjusted for balance */
    font-weight: 700; /* Bold for emphasis */
    color: #004085; /* Professional blue for headers */
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    font-weight: 600; /* Slightly lighter weight */
    color: #0056b3; /* Complementary blue */
    margin-bottom: 15px;
}

h3 {
    font-size: 28px;
    font-weight: 500;
    color: #0069d9; /* Subtle variation in blue shades */
    margin-bottom: 10px;
}

/* Theme Colors */
:root {
    --cassiopeia-color-primary: #007bff; /* Professional primary blue */
    --cassiopeia-color-link:    #0056b3; /* Deep blue for links */
    --cassiopeia-color-hover:   #004085; /* Darker blue for hover effects */
}

/* Links */
a {
    color: var(--cassiopeia-color-link);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--cassiopeia-color-hover);
}

/* Additional Styling for Layout Consistency */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

