<style>
    .press-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .press-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        max-height: 400px;
        border-bottom: 1px solid #ddd;
    }

    .press-title {
        font-size: 1.75rem;
        color: #212529;
        font-weight: bold;
    }

    .sub-title {
        color: #6c757d;
    }

    .badge-date {
        background-color: #e3f2fd;
        color: #0d6efd;
        font-size: 0.9rem;
        border-radius: 5px;
    }

    .content-box {
        background-color: #f8f9fa;
        padding: 1.5rem;
        border-radius: 8px;
        margin-top: 1rem;
        border: 1px solid #e3e6ea;
        font-size: 1rem;
        line-height: 1.7;
        color: #333;
    }

    .action-buttons .btn {
        transition: 0.3s ease-in-out;
    }

    .action-buttons .btn:hover {
        transform: scale(1.05);
    }

    .nav-btns .btn {
        transition: 0.3s;
    }

    .nav-btns .btn:hover {
        background-color: #6610f2;
        color: white;
        transform: translateX(5px);
    }
</style>