/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Taviraj&family=Work+Sans&display=swap');

/* Reset default margin and padding */
body, h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

/* Base body styles */
body {
  font-family: 'Taviraj', serif, Georgia;
  font-size: 18px;
  margin: 0 80px;
}

/* Responsive margin for smaller screens */
@media (max-width: 768px) {
  body {
    margin: 0 20px;
  }
}

/* Paragraph styles */
p {
  color: #000000;
  font-weight: normal;
  font-size: 16px;
  margin: 24px 10px;
}

/* Heading font family */
h1, h2, h3, h4 {
  font-family: 'Work Sans', sans-serif;
}

/* Individual heading sizes */
h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 24px;
}

/* Navbar styles */
.navbar {
  background-color: #434F5B;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
}

/* Navbar list styling */
.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

/* Navbar list items */
.navbar li {
  margin: 0 20px;
}

/* Nav link base styles */
a, .nav-link {
  text-decoration: none;
  color: white;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
}

/* Nav link hover and focus effect */
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #ABD060;
}

.page-name {
font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.page-intro {
  color: #000000;
  font-weight: normal;
  font-size: 16px;
  margin: 24px 10px;
  text-align: center;
}

.logo-banner {
  text-align: center;
  margin: 2rem 0 1rem 0;
}

.logo-banner img {
  max-width: 200px; /* Adjust to your preferred size */
  height: auto;
  display: inline-block;
}



/* Page and section headings with shared style */
/* Removed font-size override so headings keep semantic sizes */

.theproject,
.project-resolution {
  height: 21px;
  font-family: 'Work Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #37A8C1; /* corrected */
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.audit-highlights__title,
.outcome
 {
    height: 21px;
  font-family: 'Work Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  text-align: center;
  margin: 0 auto; /* center the element horizontally */
  margin-top: 30px;
  margin-bottom: 30px;
}

.clarity,
.optimizing,
.enhanced,
.diverse,
.skill,
.request,
.actions,
.alerts,
.terminology
{ 
    text-transform: uppercase;      /* ALL CAPS */
  color: #2E3A4A;                 /* Slightly darker, muted color */
  font-weight: 400;               /* Semi-bold */
  font-size: 18px;                /* Larger than body, smaller than main headings */
  letter-spacing: 1.2px;          /* Spacing for uppercase readability */
  margin: 24px 10px 12px;         /* Adequate spacing around each topic */
  font-family: 'Work Sans', sans-serif;
}

.clarity-issue,
.clarity-recommendation,
.clarity-response,

.optimizing-issue,
.optimizing-recommendation,
.optimizing-response,

.enhanced-issue,
.enhanced-recommendation,
.enhanced-response,

.diverse-issue,
.diverse-recommendation,
.diverse-response,

.skill-issue,
.skill-recommendation,
.skill-response,

.request-issue,
.request-recommendation,
.request-response,

.actions-issue,
.actions-recommendation,
.actions-response,

.alerts-issue,
.alerts-recommendation,
.alerts-response,

.terminology-issue,
.terminology-recommendation,
.terminology-response
{
 font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 200;
  color: #3A3F4A;
  margin: 16px 10px 6px;
}

.audit-topic {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  margin: 30px 0 16px;
  text-align: left;
}

/* Labels like "Issue Identified", "Recommendation", etc. */
.audit-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3A3F4A;
  margin: 16px 0 6px;
}

/* Paragraph body text for each part of the audit */
.audit-text {
  font-family: 'Taviraj', serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 12px;
}

/* Client response quote styling */
.audit-text.quote {
  font-style: italic;
  color: #434F5B;
}




