
:root {
    --primary: #00003a;
    --green: rgb(86, 185, 77);
    --secondary: rgb(244, 193, 41);
    --tertiary: #f68926;
    --lightGreen: rgb(134, 197, 72);
    --lightBlue: rgb(54, 114, 185);
    --blueGrey: rgb(39, 174, 228);
    --lightGrey: rgb(211, 211, 211);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

.impact-hero {
    background-color: var(--primary); 
    color: var(--white);
    padding: 80px 0; 
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../assets/img/impactHeroBg.png'); 
    background-size: cover;
    background-position: top;
}

.impact-hero .heroTitle {
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif; 
}

.impact-hero .heroTagline {
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.impact-hero .impactHeroBtn {
    background-color: var(--secondary); 
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.impact-hero .impactHeroBtn:hover {
    background-color: var(--green); 
}

/* --- Success Stories Section --- */
.success-stories {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.success-stories .section-title {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 60px;
    font-family: 'Outfit', sans-serif; 
    position: relative;
    padding-bottom: 15px;
}

.success-stories .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100px;
    height: 4px;
    background-color: var(--green); 
    border-radius: 2px;
}


/* --- Journal Grid for Articles --- */
.journal-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 40px; 
}


/* --- Individual Journal Article Styling --- */
.journal-article {
    background-color: rgba(244, 193, 41, 0.7);
    border: 1px solid var(--border-color, #ddd); /* A subtle border */
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* Soft shadow */
    padding: 35px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journal-article:hover {
    transform: translateY(-8px); /* Lift on hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Stronger shadow */
}

.journal-article::before { /* Subtle diagonal line or texture */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--green); /* A header bar color */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}


/* --- Article Header --- */
.article-header {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color, #eee); /* Separator line */
    padding-bottom: 20px;
}

.article-headline {
    font-size: clamp(1.5em, 2.5vw, 2em); /* Bold, impactful headline */
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
}

.article-byline {
    font-size: 1.2em;
    color: var(--dark-grey);
    font-style: italic;
    margin-bottom: 5px;
    font-weight: bold;
}

.client-company {
    font-weight: 600;
    color: var(--green);
}

.article-date {
    font-size: 0.8em;
    color: var(--grey);
}

/* --- Article Body --- */
.article-body {
    font-size: 1em;
    line-height: 1.7;
    color: var(--dark-grey);
    /* For multi-column layout within the article body */
    /* This will create newspaper-like columns inside each article */
    column-count: 1; /* Default for mobile */
    column-gap: 30px;
}

.article-photo {
    width: 250px;
    height: 150px;
    border: 2px solid white;
    cursor: pointer;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.article-photo:hover {
    transform: scale(2);
    box-shadow: 3px 3px 5px var(--green);
}

@media (min-width: 768px) { /* Apply columns on wider screens */
    .journal-article .article-body {
        column-count: 2; /* Two columns for tablet/desktop */
    }
}


.journal-article .article-body p {
    margin-bottom: 1em; /* Space between paragraphs */
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color, #eee);
    text-align: center;
}

.client-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green); /* Frame for the photo */
    margin-bottom: 15px;
}

.pull-quote {
    font-size: 1.2em; /* Larger, emphasized text */
    font-style: italic;
    color: var(--secondary); /* Highlight color */
    border-left: 5px solid var(--secondary); /* A strong visual indicator */
    padding-left: 15px;
    margin: 15px 0; /* Space around the quote */
    line-height: 1.4;
    text-align: left; /* Align quote text left */
}

/* --- General container padding to ensure content doesn't touch edges --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Consistent padding */
}

