/* General Body Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5; /* Light grey background */
    color: #333; /* Dark grey for general text */
    line-height: 1.6;
}

.container {
    max-width: 960px; /* Standard content width */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Add some padding on sides for smaller screens */
}

/* Header for the internal page */
.page-header {
    background-color: #64c4d2; /* Same teal as main site header */
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header .logo {
    display: flex;
    align-items: center;
    font-size: 1.5em;
    font-weight: 700;
}

.page-header .logo img {
    height: 35px; /* Adjust logo size */
    margin-right: 10px;
}

.page-header .main-nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-header .main-nav a:hover,
.page-header .main-nav a.active {
    color: #ffd700; /* Yellow highlight on hover/active */
}


/* Main Content Area */
.main-content {
    background-color: #fff; /* White background for content block */
    margin: 40px auto; /* Space above and below the content block */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for the block */
}

.page-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.8em;
    color: #2a9d8f; /* Teal color for main title */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 20px;
    text-align: justify; /* Justify paragraph text */
}

/* Hyperlink Styles */
a {
    color: #2a9d8f; /* Teal color for links */
    text-decoration: underline; /* Underlined by default */
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffd700; /* Yellow on hover */
    text-decoration: none; /* Remove underline on hover */
}

/* List Styles */
ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
    padding-left: 20px; /* Space for custom bullet */
    position: relative;
    text-align: justify; /* Justify list item text */
}

/* Custom bullet point for lists */
.list-sectors li::before,
.list-dimensions li::before,
.list-audience li::before {
    content: '\2022'; /* Unicode character for a bullet point */
    color: #2a9d8f; /* Teal bullet color */
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

/* Specific styling for the section subtitles */
.section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8em;
    color: #4CAF50; /* Green color for subtitle */
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

/* Highlighted text within list items */
.highlight {
    font-weight: 700;
    color: #4CAF50; /* Green highlight color */
}

.final-statement {
    font-style: italic;
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #555;
}


/* Footer */
.page-footer {
    background-color: #333; /* Dark footer background */
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
    }
    .page-header .main-nav {
        margin-top: 15px;
    }
    .page-header .main-nav a {
        margin: 0 10px;
    }
    .main-content {
        margin: 20px auto;
        padding: 25px;
    }
    .page-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .section-subtitle {
        font-size: 1.5em;
    }
    p, ul li {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-header .logo {
        font-size: 1.2em;
    }
    .page-header .main-nav a {
        display: block; /* Stack menu items */
        margin: 8px 0;
    }
    .main-content {
        padding: 20px;
    }
    .page-title {
        font-size: 1.8em;
    }
}