/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header.marine-header {
    background: linear-gradient(135deg, #006064 0%, #00838f 100%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header h1 i {
    margin-right: 1rem;
    opacity: 0.9;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section General Styles */
.about-section,
.innovations-section,
.marine-overview {
    padding: 3rem 0;
}

.section-intro {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0d47a1;
    text-align: center;
}

/* About Intro */
.about-intro {
    margin-bottom: 4rem;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-text .lead {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-box p {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Mission & Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: #1976d2;
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.15);
    transform: translateY(-5px);
}

.mission-card .icon {
    font-size: 3rem;
    color: #1976d2;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.8rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.mission-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Rationale Section */
.rationale-section {
    margin-bottom: 4rem;
}

.threats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.threat-card {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.threat-card i {
    font-size: 2.5rem;
    color: #f57c00;
    margin-bottom: 1rem;
}

.threat-card h4 {
    font-size: 1.2rem;
    color: #e65100;
    margin-bottom: 0.8rem;
}

.threat-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Strategic Focus Areas */
.focus-areas-section {
    margin-bottom: 4rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.pillar-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    font-size: 1.4rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.pillar-card ul {
    list-style: none;
    padding: 0;
}

.pillar-card ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
    position: relative;
}

.pillar-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Strategic Role */
.strategic-role {
    margin-bottom: 4rem;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.role-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.role-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 1rem;
}

.role-card h4 {
    font-size: 1.3rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.role-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Partnerships Section */
.partnerships-section {
    margin-bottom: 4rem;
}

.partners-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.partner-category {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
}

.partner-category h3 {
    font-size: 1.3rem;
    color: #0d47a1;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-category h3 i {
    color: #1976d2;
}

.partner-category ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.partner-category ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
    position: relative;
}

.partner-category ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1976d2;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Funding Section */
.funding-section {
    margin-bottom: 4rem;
}

.funding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.funding-card {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.funding-card i {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.funding-card h4 {
    font-size: 1.2rem;
    color: #1b5e20;
    margin-bottom: 1rem;
}

.funding-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ===================================
   INNOVATIONS PAGE STYLES
   =================================== */

.innovations-intro {
    margin-bottom: 3rem;
}

.innovations-intro .lead {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Project Cards */
.project-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-card.featured {
    border: 2px solid #1976d2;
    background: linear-gradient(to bottom, #ffffff 0%, #f5f9ff 100%);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.project-icon {
    font-size: 3rem;
    color: #1976d2;
}

.project-title h3 {
    font-size: 1.8rem;
    color: #0d47a1;
    margin-bottom: 0.5rem;
}

.project-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-status.ongoing {
    background: #4caf50;
    color: white;
}

.project-status.pilot {
    background: #ff9800;
    color: white;
}

.project-status.expanding {
    background: #2196f3;
    color: white;
}

.project-status.new {
    background: #9c27b0;
    color: white;
}

.project-status.planning {
    background: #607d8b;
    color: white;
}

.project-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.project-description h4 {
    font-size: 1.3rem;
    color: #0d47a1;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.project-description p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.project-description ul,
.project-description ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-description li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.project-description strong {
    color: #0d47a1;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.impact-stats .stat {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.impact-stats .stat strong {
    display: block;
    font-size: 2rem;
    color: #0d47a1;
    margin-bottom: 0.5rem;
}

.impact-stats .stat span {
    font-size: 0.9rem;
    color: #555;
}

/* Project Visual Placeholders */
.project-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-placeholder,
.chart-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border: 2px dashed #bdbdbd;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.map-placeholder i,
.chart-placeholder i {
    font-size: 4rem;
    color: #9e9e9e;
    margin-bottom: 1rem;
}

.map-placeholder p,
.chart-placeholder p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-placeholder small,
.chart-placeholder small {
    font-size: 0.9rem;
    color: #999;
}

/* Innovation Pipeline */
.pipeline-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: #f5f5f5;
    border-radius: 15px;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.pipeline-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pipeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pipeline-card i {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 1rem;
}

.pipeline-card h4 {
    font-size: 1.1rem;
    color: #0d47a1;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.pipeline-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline {
    display: inline-block;
    background: #e3f2fd;
    color: #0d47a1;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Get Involved Section */
.get-involved {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 15px;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.option-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.option-card i {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.option-card h4 {
    font-size: 1.2rem;
    color: #1b5e20;
    margin-bottom: 1rem;
}

.option-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===================================
   MARINE & COASTAL PAGE STYLES
   =================================== */

/* Marine Stats Grid */
.marine-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.marine-stat-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.marine-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.marine-stat-card.blue {
    border-top: 4px solid #2196f3;
}

.marine-stat-card.teal {
    border-top: 4px solid #00bcd4;
}

.marine-stat-card.orange {
    border-top: 4px solid #ff9800;
}

.marine-stat-card.red {
    border-top: 4px solid #f44336;
}

.marine-stat-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.marine-stat-card.blue i {
    color: #2196f3;
}

.marine-stat-card.teal i {
    color: #00bcd4;
}

.marine-stat-card.orange i {
    color: #ff9800;
}

.marine-stat-card.red i {
    color: #f44336;
}

.marine-stat-card h3 {
    font-size: 2.2rem;
    color: #0d47a1;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.marine-stat-card p {
    font-size: 1rem;
    color: #666;
}

/* Fisheries Section */
.fisheries-section {
    padding: 3rem 0;
    background: #fafafa;
}

.chart-container-large {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    height: 500px;
}

.chart-container-medium {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    height: 400px;
}

/* Fisheries Breakdown */
.fisheries-breakdown {
    margin-top: 3rem;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.breakdown-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.breakdown-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.breakdown-icon.artisanal {
    background: #e3f2fd;
    color: #1976d2;
}

.breakdown-icon.industrial {
    background: #fff3e0;
    color: #f57c00;
}

.breakdown-icon.aqua {
    background: #e8f5e9;
    color: #388e3c;
}

.breakdown-card h4 {
    font-size: 1.4rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.breakdown-stat {
    margin-bottom: 1.5rem;
}

.breakdown-stat strong {
    display: block;
    font-size: 2rem;
    color: #0d47a1;
    margin-bottom: 0.3rem;
}

.breakdown-stat span {
    color: #666;
    font-size: 0.95rem;
}

.breakdown-details {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.breakdown-details li {
    padding: 0.4rem 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.trend-note {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.trend-note.decline {
    background: #ffebee;
    color: #c62828;
}

.trend-note.growth {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Species Cards */
.species-section {
    margin-top: 3rem;
}

.species-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.species-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
}

.species-card.overexploited {
    border-left-color: #f44336;
}

.species-card.fully-exploited {
    border-left-color: #ff9800;
}

.species-card.moderate {
    border-left-color: #4caf50;
}

.species-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.species-header h4 {
    font-size: 1.2rem;
    color: #0d47a1;
    margin: 0;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.critical {
    background: #ffebee;
    color: #c62828;
}

.status-badge.warning {
    background: #fff3e0;
    color: #e65100;
}

.status-badge.moderate {
    background: #e8f5e9;
    color: #2e7d32;
}

.scientific-name {
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.species-stat {
    margin-bottom: 1rem;
}

.species-stat strong {
    display: block;
    font-size: 1.4rem;
    color: #0d47a1;
    margin-bottom: 0.3rem;
}

.species-stat span {
    color: #666;
    font-size: 0.85rem;
}

.species-note {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Ocean Conditions Section */
.ocean-conditions-section {
    padding: 3rem 0;
}

.ocean-subsection {
    margin-bottom: 4rem;
}

.temperature-impacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.impact-card {
    background: white;
    border: 2px solid #ffebee;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.impact-card i {
    font-size: 2.5rem;
    color: #f44336;
    margin-bottom: 1rem;
}

.impact-card h4 {
    font-size: 1.1rem;
    color: #c62828;
    margin-bottom: 0.8rem;
}

.impact-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Upwelling Cards */
.upwelling-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.upwelling-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.upwelling-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.upwelling-header h4 {
    font-size: 1.3rem;
    color: #0d47a1;
    margin: 0;
}

.intensity {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.intensity.strong {
    background: #e3f2fd;
    color: #0d47a1;
}

.intensity.moderate {
    background: #fff3e0;
    color: #e65100;
}

.location-info {
    margin-bottom: 1rem;
}

.location-info p {
    font-size: 0.95rem;
    color: #666;
    margin: 0.3rem 0;
}

.ecological-note {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.upwelling-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.upwelling-stats .stat {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.upwelling-stats .stat strong {
    display: block;
    color: #0d47a1;
    margin-bottom: 0.3rem;
}

/* Ocean Parameters */
.ocean-parameters {
    margin-top: 3rem;
}

.parameters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.parameter-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.parameter-card i {
    font-size: 3rem;
    color: #1976d2;
    margin-bottom: 1rem;
}

.parameter-card h4 {
    font-size: 1.3rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.param-value {
    font-size: 2rem;
    color: #0d47a1;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.param-range {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.param-note {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Pollution Section */
.pollution-section {
    padding: 3rem 0;
    background: #fafafa;
}

.pollution-subsection {
    margin-bottom: 4rem;
}

.pollution-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pollution-stat-large {
    background: white;
    border-left: 4px solid #f44336;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pollution-stat-large strong {
    display: block;
    font-size: 2.5rem;
    color: #c62828;
    margin-bottom: 0.5rem;
}

.pollution-stat-large p {
    font-size: 1rem;
    color: #666;
}

/* Plastic Sources Chart */
.plastic-sources {
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sources-chart {
    margin-top: 1.5rem;
}

.source-bar {
    background: linear-gradient(to right, #ff9800 0%, #f57c00 100%);
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.source-bar:hover {
    transform: translateX(5px);
}

/* Pollution Hotspots */
.hotspots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.hotspot-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
}

.hotspot-card.critical {
    border-left-color: #d32f2f;
}

.hotspot-card.severe {
    border-left-color: #f57c00;
}

.hotspot-card.high {
    border-left-color: #ffa726;
}

.hotspot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hotspot-header h5 {
    font-size: 1.2rem;
    color: #0d47a1;
    margin: 0;
}

.pollution-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pollution-badge.critical {
    background: #ffebee;
    color: #c62828;
}

.pollution-badge.severe {
    background: #fff3e0;
    color: #e65100;
}

.pollution-badge.high {
    background: #fff8e1;
    color: #f57c00;
}

.hotspot-stat {
    margin-bottom: 1rem;
}

.hotspot-stat strong {
    display: block;
    font-size: 1.5rem;
    color: #c62828;
    margin-bottom: 0.3rem;
}

.hotspot-stat span {
    font-size: 0.85rem;
    color: #888;
}

.hotspot-issues {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.health-impact {
    font-size: 0.9rem;
    color: #d32f2f;
    font-weight: 600;
    font-style: italic;
}

/* Contamination Cards */
.contamination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contamination-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contamination-card i {
    font-size: 3rem;
    color: #f44336;
    margin-bottom: 1rem;
}

.contamination-card h4 {
    font-size: 1.2rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.contam-stat {
    font-size: 1.5rem;
    color: #c62828;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contamination-card > p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.contamination-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    text-align: left;
}

.contamination-card li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    color: #555;
    font-size: 0.9rem;
    position: relative;
}

.contamination-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

.health-warning {
    background: #ffebee;
    color: #c62828;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Fishermen Section */
.fishermen-section {
    padding: 3rem 0;
}

.challenge-subsection {
    margin-bottom: 4rem;
}

.decline-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.decline-stat {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left: 4px solid #f44336;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.decline-stat strong {
    display: block;
    font-size: 2.5rem;
    color: #c62828;
    margin-bottom: 0.5rem;
}

.decline-stat p {
    font-size: 0.95rem;
    color: #666;
}

.challenge-note {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    padding: 1.5rem;
    background: #f5f5f5;
    border-left: 4px solid #1976d2;
    border-radius: 8px;
}

/* IUU Fishing Impact */
.iuu-impact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.iuu-stat-card {
    background: white;
    border: 2px solid #ffebee;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.iuu-stat-card i {
    font-size: 2.5rem;
    color: #f44336;
    margin-bottom: 1rem;
}

.iuu-stat-card h4 {
    font-size: 1.3rem;
    color: #c62828;
    margin-bottom: 0.5rem;
}

.iuu-stat-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Climate Impacts */
.climate-impacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.climate-impact-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
}

.climate-impact-card.high {
    border-left-color: #f44336;
}

.climate-impact-card.moderate {
    border-left-color: #ff9800;
}

.impact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.impact-header h4 {
    font-size: 1.2rem;
    color: #0d47a1;
    margin: 0;
}

.severity {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.severity.high {
    background: #ffebee;
    color: #c62828;
}

.severity.moderate {
    background: #fff3e0;
    color: #e65100;
}

.impact-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Economic Hardship */
.economic-hardship-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hardship-card {
    background: white;
    border-top: 4px solid #ff9800;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hardship-card i {
    font-size: 2.5rem;
    color: #f57c00;
    margin-bottom: 1rem;
}

.hardship-card h4 {
    font-size: 1.1rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.hardship-stat {
    display: block;
    font-size: 2rem;
    color: #e65100;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hardship-card > p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.comparison {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.operational-challenges {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.operational-challenges h4 {
    font-size: 1.2rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.operational-challenges ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.operational-challenges li {
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    color: #555;
    font-size: 0.95rem;
}

.operational-challenges li i {
    color: #f57c00;
    margin-right: 0.5rem;
}

.livelihood-interest {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.highlight-stat {
    font-size: 1.15rem;
    color: #1b5e20;
    line-height: 1.7;
}

.highlight-stat i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Employment Section */
.employment-section {
    padding: 3rem 0;
    background: #fafafa;
}

.employment-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.employment-stat-large {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #1976d2;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.employment-stat-large strong {
    display: block;
    font-size: 2.5rem;
    color: #0d47a1;
    margin-bottom: 0.5rem;
}

.employment-stat-large p {
    font-size: 1rem;
    color: #666;
}

.employment-breakdown {
    margin-top: 2rem;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.job-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.job-card h4 {
    font-size: 1.2rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.job-count {
    display: block;
    font-size: 1.8rem;
    color: #1976d2;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.job-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Data Sources Section */
.data-sources-section {
    padding: 3rem 0;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.source-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.source-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.source-card i {
    font-size: 3rem;
    color: #1976d2;
    margin-bottom: 1rem;
}

.source-card h4 {
    font-size: 1.2rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.source-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Section Marine */
.cta-section-marine {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
    text-align: center;
}

.cta-section-marine h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section-marine p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Home Page Specific Styles */
.mission-section {
    padding: 3rem 0;
    background: #f5f9ff;
}

.mission-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: #0d47a1;
    margin-bottom: 1.5rem;
}

.mission-content .lead {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.pillars-section {
    padding: 3rem 0;
    background: white;
}

.pillars-home-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.pillar-home-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-home-card:hover {
    border-color: #1976d2;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.15);
    transform: translateY(-5px);
}

.pillar-icon-home {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 1rem;
}

.pillar-home-card h3 {
    font-size: 1.1rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.pillar-home-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pillar-link {
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.pillar-link:hover {
    text-decoration: underline;
}

.impact-section {
    padding: 3rem 0;
    background: #e8f5e9;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.impact-card.positive {
    background: white;
    border-top: 4px solid #4caf50;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.impact-card.positive i {
    font-size: 2.5rem;
    color: #388e3c;
    margin-bottom: 1rem;
}

.impact-card.positive h3 {
    font-size: 2rem;
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.impact-card.positive p {
    font-size: 0.95rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .intro-content {
        grid-template-columns: 1fr;
    }

    .pillars-home-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .threats-grid,
    .role-grid,
    .pipeline-grid,
    .parameters-grid,
    .contamination-grid,
    .jobs-grid,
    .sources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marine-stats-grid,
    .temperature-impacts,
    .iuu-impact,
    .economic-hardship-grid,
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .breakdown-grid,
    .species-grid,
    .funding-grid,
    .involvement-options,
    .pollution-overview,
    .employment-overview {
        grid-template-columns: 1fr;
    }

    .project-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .mission-vision,
    .upwelling-grid,
    .hotspots-grid,
    .climate-impacts-grid,
    .decline-overview {
        grid-template-columns: 1fr;
    }

    .threats-grid,
    .role-grid,
    .pipeline-grid,
    .marine-stats-grid,
    .temperature-impacts,
    .iuu-impact,
    .economic-hardship-grid,
    .parameters-grid,
    .contamination-grid,
    .jobs-grid,
    .sources-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .pillars-home-grid {
        grid-template-columns: 1fr;
    }

    .partner-category ul {
        grid-template-columns: 1fr;
    }

    .chart-container-large {
        height: 350px;
    }
}
