:root {
    --primary-color: #005A9C; /* Academy Blue */
    --secondary-color: #FFD700; /* Academy Gold */
    --accent-color: #4CAF50; /* Positive Green */
    --neutral-bg: #F4F4F8; /* Light Gray page background */
    --text-color: #333333;
    --white-color: #FFFFFF;
    --light-text-color: #F0F0F0;
    --traditional-column-bg: #FFEBEE; /* Light red for contrast */
    --accountable-column-bg: #E8F5E9; /* Light green for contrast */
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0px 0;
    background-color: var(--neutral-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.infographic-container {
    max-width: 900px;
    margin: 0px auto;
    background-color: var(--white-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.infographic-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.logo {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    /* border: 2px solid var(--secondary-color);
    border-radius: 50%;
    /* background-color: var(--white-color); /* if logo is transparent */
    /* padding: 5px; /* if logo needs padding */
}

.infographic-header h1 {
    margin: 0;
    font-size: 2.2em;
    font-weight: 900;
    color: var(--white-color);
}

.intro-section {
    padding: 30px;
    text-align: center;
    font-size: 1.2em;
    background-color: var(--secondary-color);
    color: var(--primary-color); /* Dark text on yellow for contrast */
}

.intro-section p {
    margin: 0;
    font-weight: bold;
}

.comparison-section {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    gap: 30px;
}

.column {
    flex: 1;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.traditional-model {
    background-color: var(--traditional-column-bg);
    border-left: 5px solid #D32F2F; /* Darker Red Accent */
}

.accountable-development {
    background-color: var(--accountable-column-bg);
    border-left: 5px solid var(--accent-color); /* Green Accent */
}

.column h2 {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.traditional-model h2 {
    color: #B71C1C; /* Dark Red */
}

.accountable-development h2 {
    color: #2E7D32; /* Dark Green */
}

.column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1.05em;
    padding: 10px;
    background-color: var(--white-color);
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.column li:hover {
    background-color: #f9f9f9;
}

.icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    transition: transform 0.2s ease-in-out;
}

.column li:hover .icon {
    transform: scale(1.15);
}

.stat-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 35px 30px;
    text-align: center;
}

.stat-section blockquote {
    font-size: 1.5em;
    margin: 0;
    font-style: italic;
    font-weight: 700;
    line-height: 1.4;
}

.stat-section blockquote strong {
    color: var(--secondary-color);
}

.cta-section {
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 30px;
    text-align: center;
}

.cta-section p {
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #FFC107; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.infographic-footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #777;
    background-color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .infographic-header {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .infographic-header h1 {
        font-size: 1.8em;
    }

    .comparison-section {
        flex-direction: column;
        gap: 20px;
    }

    .column {
        margin-bottom: 20px;
    }

    .intro-section p, .column li, .stat-section blockquote, .cta-section p {
        font-size: 1em; /* Adjust font sizes for smaller screens */
    }
    .stat-section blockquote {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px 0;
    }
    .infographic-container {
        margin: 10px;
    }
    .infographic-header h1 {
        font-size: 1.5em;
    }
    .infographic-header, .intro-section, .column, .stat-section, .cta-section, .infographic-footer {
        padding: 20px;
    }
    .icon {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

