    .press-release-section {
        padding: 60px 20px;
        text-align: center;
    }

    .press-release-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #00214e;
        margin-bottom: 50px;
        text-align: center;
    }

    .press-release-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1000px;
        margin: 0 auto;
        align-items: center;
    }

    .press-release-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background: #fff;
        border-radius: 12px;
        transition: all 0.3s ease;
        text-decoration: none;
        min-height: 120px;
    }

    .press-release-item img {
        max-width: 100%;
        max-height: 80px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .press-release-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .press-release-title {
            font-size: 1.75rem;
            margin-bottom: 30px;
        }

        .press-release-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .press-release-item {
            min-height: 100px;
        }
    }

    @media (max-width: 992px) and (min-width: 769px) {
        .press-release-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }