@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --primary-deep-blue: #1A237E;
    --secondary-teal: #00796B;
    --accent-gold: #FFAB00;
    --neutral-light-gray: #F5F5F5;
    --neutral-dark-gray: #263238;
    --white: #FFFFFF;
    --text-light: #F5F5F5; /* For text on dark backgrounds */

    --font-headline: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Global Resets & Base Styles */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--neutral-dark-gray);
    font-size: 16px; /* Base font size for mobile */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    color: var(--primary-deep-blue);
    margin-top: 0;
}

a {
    color: var(--secondary-teal);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    background-color: var(--primary-deep-blue); /* Using primary blue for a strong impact */
    color: var(--text-light);
    padding: 60px 20px; /* Generous padding, more on top/bottom */
    text-align: center;
    min-height: 70vh; /* Make hero take up a good portion of the viewport */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 800px; /* Limit width for better readability on large screens */
}

#hero h1 {
    font-size: 2.5rem; /* Responsive font size for mobile */
    font-weight: 700;
    color: var(--white); /* Override default h1 color */
    margin-bottom: 0.5em;
    line-height: 1.2;
}

#hero p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1.5em;
    max-width: 600px; /* Constrain subheadline width */
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section Brand Name */
.hero-brand-name {
    font-family: var(--font-headline); /* Use headline font for consistency */
    font-size: 1rem; /* Smaller than subheadline */
    font-weight: 500; /* Medium weight */
    color: var(--accent-gold); /* Use accent color to make it pop a bit */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5em; /* Space before the main headline */
}

/* Primary Call to Action Button */
.cta-button {
    font-family: var(--font-headline);
    background-color: var(--accent-gold);
    color: var(--neutral-dark-gray); /* Dark text on gold for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover, .cta-button:focus {
    background-color: #FFC107; /* Slightly lighter gold on hover */
    color: var(--neutral-dark-gray);
    text-decoration: none;
    transform: translateY(-2px); /* Subtle lift effect */
}

/* Add a more specific hover rule for .cta-large */
.cta-button.cta-large:hover, .cta-button.cta-large:focus {
    background-color: #FFC107; /* Slightly lighter gold on hover */
    color: var(--neutral-dark-gray);
    text-decoration: none;
    transform: translateY(-3px); /* Slightly more lift for emphasis */
}

/* Basic Section Styling for consistency */
section {
    padding: 40px 20px; /* Standard padding for sections */
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    body {
        font-size: 17px; /* Slightly larger base font for tablets and up */
    }

    #hero {
        padding: 80px 40px;
        min-height: 60vh;
    }

    #hero h1 {
        font-size: 3.5rem; /* Larger headline for bigger screens */
    }

    #hero p {
        font-size: 1.25rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 18px 36px;
    }

    section {
        padding: 60px 40px;
    }
}

@media (min-width: 1024px) {
    #hero h1 {
        font-size: 4rem; /* Even larger for desktop */
    }
     #hero p {
        font-size: 1.3rem;
    }
}

/* Container for centered content */
.container {
    max-width: 960px; /* Max width for content sections */
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px; /* Ensure padding within the container */
    padding-right: 20px;
}

/* Challenge Section */
#challenge {
    background-color: var(--neutral-light-gray);
}

#challenge h2 {
    text-align: center;
    margin-bottom: 1em;
}

#challenge p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center; /* Center align paragraph text for this section */
    max-width: 750px; /* Constrain paragraph width for readability */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

/* Responsive Adjustments for Challenge Section */
@media (min-width: 768px) {
    #challenge p {
        font-size: 1.15rem;
    }
    #challenge h2 {
        font-size: 2.5rem;
    }
}

/* Approach Section */
#approach {
    background-color: var(--white); /* White background to alternate with light gray */
}

#approach h2 {
    text-align: center;
    margin-bottom: 1em;
    font-size: 2rem; /* Slightly smaller than challenge H2 for mobile by default */
}

#approach .intro, #approach .conclusion {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
    font-size: 1.1rem;
    line-height: 1.7;
}

#approach .intro strong, #approach .conclusion strong {
    font-weight: 600; /* Ensure added emphasis */
    color: var(--primary-deep-blue);
}

.pillars-container {
    display: flex;
    flex-direction: column; /* Stack pillars on mobile */
    gap: 30px; /* Space between pillars */
    margin-top: 2em;
    margin-bottom: 2em;
}

.pillar {
    background-color: var(--neutral-light-gray); /* Light background for each pillar */
    padding: 25px;
    border-radius: 8px;
    text-align: center; /* Center text within pillars for now */
    border-left: 5px solid var(--secondary-teal); /* Accent border */
}

.pillar h3 {
    color: var(--secondary-teal);
    font-size: 1.5rem;
    margin-bottom: 0.75em;
}

.pillar p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments for Approach Section */
@media (min-width: 768px) {
    #approach h2 {
        font-size: 2.5rem;
    }
    #approach .intro, #approach .conclusion {
        font-size: 1.15rem;
    }
    .pillars-container {
        flex-direction: row; /* Pillars side-by-side on tablets and up */
        justify-content: space-between;
    }
    .pillar {
        flex-basis: calc(33.333% - 20px); /* Adjust basis considering gap */
        text-align: left; /* Align text to left for wider view */
    }
}

@media (min-width: 1024px) {
    .pillar {
         padding: 30px;
    }
}

/* Programs Section */
#programs {
    background-color: var(--neutral-light-gray); /* Alternating background color */
}

#programs h2 {
    text-align: center;
    margin-bottom: 0.5em;
    font-size: 2rem;
}

#programs .section-intro {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
    font-size: 1.1rem;
    line-height: 1.7;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stack cards on mobile */
    gap: 30px;
}

.program-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    border-top: 5px solid var(--primary-deep-blue); /* Accent top border */
    display: flex;
    flex-direction: column; /* Ensure content within card flows vertically */
}

.program-card h3 {
    color: var(--primary-deep-blue);
    font-size: 1.7rem;
    margin-bottom: 0.25em;
}

.program-card .program-subtitle {
    font-style: italic;
    color: var(--secondary-teal);
    margin-bottom: 1em;
    font-size: 0.95rem;
}

.program-card h4 {
    color: var(--neutral-dark-gray);
    font-size: 1.1rem;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.program-card ul {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0;
    margin-bottom: 1em;
}

.program-card ul li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.5em;
    font-size: 0.95rem;
}

.program-card ul li::before {
    content: '\2713'; /* Checkmark symbol */
    color: var(--secondary-teal);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.program-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1em;
}

.program-card p strong {
    font-weight: 600;
}

.program-card .client-job {
    margin-top: auto; /* Pushes this to the bottom if card heights vary */
    padding-top: 1em;
    border-top: 1px solid var(--neutral-light-gray);
    font-size: 0.9rem;
    color: var(--neutral-dark-gray);
}

.program-card .client-job strong {
    color: var(--primary-deep-blue);
}

/* Responsive Adjustments for Programs Section */
@media (min-width: 768px) {
    #programs h2 {
        font-size: 2.5rem;
    }
    #programs .section-intro {
        font-size: 1.15rem;
    }
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Responsive grid */
    }
}

@media (min-width: 1024px) {
    .program-card {
        padding: 30px;
    }
    /* If we want a strict 3-column layout on large screens: */
    /* .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    } */
}

/* Why Partner Section */
#why-partner {
    background-color: var(--white); /* Alternating background */
}

#why-partner h2 {
    text-align: center;
    margin-bottom: 0.5em;
    font-size: 2rem;
}

#why-partner .section-intro {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
    font-size: 1.1rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stack on mobile */
    gap: 20px; /* Reduced gap for a tighter layout if they are in one line */
}

.benefit-item {
    text-align: center; 
    padding: 25px; /* Increased padding for more internal space */
    /* background-color: var(--neutral-light-gray); REMOVED */
    border: 1px solid #e0e0e0; /* Lighter, more subtle border */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06); /* Softer, slightly spread shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--secondary-teal); /* Accent border color on hover */
}

.benefit-item h3 {
    color: var(--primary-deep-blue);
    font-size: 1.2rem; /* Slightly smaller for a more compact look */
    margin-bottom: 0.5em;
}

.benefit-item p {
    font-size: 0.9rem; /* Slightly smaller for a more compact look */
    line-height: 1.5;
}

/* Responsive Adjustments for Why Partner Section */
@media (min-width: 768px) {
    #why-partner h2 {
        font-size: 2.5rem;
    }
    #why-partner .section-intro {
        font-size: 1.15rem;
    }
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Allow 2-3 columns on tablets */
    }
}

@media (min-width: 1200px) { /* Adjusted breakpoint for 3 columns */
   .benefits-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on very wide screens */
        max-width: 960px; /* Optionally constrain the max-width of the grid itself */
        margin-left: auto; /* Center the grid if max-width is applied */
        margin-right: auto;
    }
    .benefit-item h3 {
        font-size: 1.2rem; /* Revert to a slightly larger H3 for 3 columns */
    }
    .benefit-item p {
        font-size: 0.9rem; /* Revert to a slightly larger P for 3 columns */
    }
}

/* Partnership Philosophy Section */
#partnership-philosophy {
    background-color: var(--neutral-light-gray); /* Alternating background */
}

#partnership-philosophy h2 {
    text-align: center;
    margin-bottom: 0.5em;
    font-size: 2rem;
}

#partnership-philosophy .section-intro {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
    font-size: 1.1rem;
    line-height: 1.7;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Space between items */
}

.philosophy-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-left: 5px solid var(--accent-gold); /* Accent border with gold */
}

.philosophy-item h3 {
    color: var(--primary-deep-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5em;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.philosophy-item em {
    font-style: italic;
    color: var(--secondary-teal);
    font-weight: 600;
}

/* Responsive Adjustments for Partnership Philosophy Section */
@media (min-width: 768px) {
    #partnership-philosophy h2 {
        font-size: 2.5rem;
    }
    #partnership-philosophy .section-intro {
        font-size: 1.15rem;
    }
    /* For tablets and wider, we could put them in a row if desired,
       but stacked often works well for this type of content too.
       If we want a row, uncomment the following: */
    /*
    .philosophy-points {
        flex-direction: row;
        flex-wrap: wrap; 
    }
    .philosophy-item {
        flex-basis: calc(33.333% - 20px); 
        min-width: 280px; 
    }
    */
}

/* Call to Action (CTA) Section */
#cta {
    background-color: var(--primary-deep-blue);
    color: var(--text-light);
    padding: 60px 20px; /* Generous padding */
    text-align: center;
}

#cta h2 {
    color: var(--white); /* Override default h2 color */
    font-size: 2.2rem;
    margin-bottom: 0.75em;
}

#cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

.contact-details {
    margin-top: 2em;
}

.contact-item {
    font-size: 1.2rem; /* Make contact info prominent */
    margin-bottom: 0.75em;
    color: var(--white); /* Ensure text is light */
}

.contact-item strong {
    font-weight: 600;
}

.contact-item a {
    color: var(--accent-gold); /* Make links stand out with accent color */
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
    color: #FFC107; /* Lighter gold on hover */
}

/* Responsive Adjustments for CTA Section */
@media (min-width: 768px) {
    #cta {
        padding: 80px 40px;
    }
    #cta h2 {
        font-size: 2.8rem;
    }
    #cta p:not(.contact-item) { /* Target the main paragraph, not contact items */
        font-size: 1.2rem;
    }
    .contact-item {
        font-size: 1.3rem;
    }
}

/* Footer */
footer {
    background-color: var(--neutral-dark-gray);
    color: var(--neutral-light-gray); /* Light text on dark background */
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
}

footer .container p {
    margin: 0; /* Remove default paragraph margin */
    color: var(--neutral-light-gray); /* Ensure p tag within footer also gets light color */
}

footer a {
    color: var(--accent-gold); /* Style any links in footer */
}

footer a:hover {
    color: #FFC107; /* Lighter gold on hover */
}

/* Responsive Adjustments for Footer */
@media (min-width: 768px) {
    footer {
        padding: 40px;
        font-size: 0.95rem;
    }
}

/* Add other global styles and resets as needed */ 