/* Ocean & Plastic Data Page Styles */

.page-hero {
    padding: 8rem 0 4rem;
    background: #B4B4B4;
    text-align: center;
}

.page-title {
    font-size: clamp(3.2rem, 6.5vw, 5.5rem);
    margin-top: 2cm;
    color: #1A9980;
}

.page-subtitle {
    color: #000000;
}

.commitment-section {
    padding: 4rem 0;
    background: #B4B4B4;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 500;
}

.commitment-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.5rem;
}

/* Data Collection Grid */
.impact-areas-section {
    padding: 5rem 0;
    background: var(--dark-gray);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #1A9980;
    text-align: center;
    margin-bottom: 1rem;
}

.areas-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #000000;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.impact-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-area-card {
    background: #B4B4B4;
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--teal);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.impact-area-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 8px 30px rgba(26, 153, 128, 0.15);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 153, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--teal);
}

.impact-area-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.impact-area-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
}

/* Partner Sections */
.partner-ngos-section {
    padding: 5rem 0;
    background: #B4B4B4;
}

.partners-highlight {
    margin: 2.5rem 0 4rem;
    text-align: center;
}

.partners-highlight-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.partners-highlight-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.partner-highlight-card {
    background: var(--dark-gray);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.partner-highlight-card img {
    max-width: 140px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-highlight-card span {
    font-weight: 600;
    color: #000000;
}

.partner-detail {
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--dark-gray);
    border: 2px solid var(--border-color);
    border-radius: 20px;
}

.partner-detail:last-child {
    margin-bottom: 0;
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.partner-logo-large {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.partner-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.partner-description {
    font-size: 1.1rem;
    color: var(--teal);
    font-weight: 600;
}

.partner-video {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.partner-video iframe {
    width: 100%;
    border-radius: 12px;
}

.video-placeholder {
    background: rgba(26, 153, 128, 0.05);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: #000000;
    font-size: 1.2rem;
}

.partner-story {
    margin-bottom: 2rem;
}

.partner-story .lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.partner-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1rem;
}

.partner-story a {
    color: var(--teal);
    text-decoration: underline;
    font-weight: 600;
}

.partner-story a:hover {
    color: #158f75;
}

.partner-info {
    display: grid;
    gap: 1.5rem;
}

.partner-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.partner-info h4:first-of-type {
    margin-top: 0;
}

.partner-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #000000;
}

/* Transparency Section */
.transparency-section {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.transparency-box {
    max-width: 900px;
    margin: 0 auto;
    background: #B4B4B4;
    border: 2px solid var(--teal);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    text-align: center;
}

.transparency-box h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.transparency-box p {
    font-size: 1.15rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.transparency-box p:last-child {
    margin-bottom: 0;
}

/* Mission CTA */
.mission-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--teal) 0%, #158f75 100%);
    text-align: center;
    color: white;
}

.mission-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 968px) {
    .impact-areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-header {
        flex-direction: column;
        text-align: center;
    }

    .transparency-box {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 640px) {
    .impact-area-card {
        padding: 2rem;
    }

    .partner-detail {
        padding: 2rem 1.5rem;
    }

    .partner-logo-large {
        width: 80px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
